Hey there, Awesome Customers!

Just a heads up: We'll be taking a breather to celebrate International Workers' Day (May 1st and 2nd - Wednesday and Thursday) and Orthodox Easter from Good Friday (May 3rd) through Easter Monday (May 6th). So, from May 1st to May 6th, our team will be off enjoying some well-deserved downtime.

During this time, our customer support will be running on a smaller crew, but don't worry! We'll still be around to help with any urgent matters, though it might take us a bit longer than usual to get back to you.

We'll be back in action at full throttle on May 7th (Tuesday), ready to tackle your questions and requests with gusto!

In the meantime, you can explore our documentation for Amelia and wpDataTables. You'll find loads of helpful resources, including articles and handy video tutorials on YouTube (Amelia's YouTube Channel and wpDataTables' YouTube Channel). These gems might just have the answers you're looking for while we're kicking back.

Thanks a bunch for your understanding and support!

Catch you on the flip side!

Warm regards,

TMS

Okay
  Public Ticket #2843634
Highcharts ​Basic Column Chart does not display all columns
Closed

Comments

  •  1
    Wendy started the conversation

    Hello!

    Can you please help. The chart is correct when used on a post along with the source table (see first screenshot below), but when displayed alone without the table, the chart does not display the last column (see second screenshot below)

    WordPress Version 5.6

    wpDataTables Version 3.4.1

    Highcharts

    Basic Column Chart

    6619876213.png

    (Chart works correctly)

    2795144059.png

    (Same shortcode as above but does not display last column)

    Thank you Wendy 

    [email protected]

  • [deleted] replied

    Hi Wendy

    Thank you for reaching out to us.

    Can you please provide us with a temporary WP-admin (administrator) user for your site where this happens, chart and table ID and a link to the front end where we can see this behavior, so we could log in and take a look ‘from the inside’ as that’s the most efficient way to see and resolve the issue. 

    We do not interfere with any data or anything else except for the plugin (in case that’s a production version of the site), and of course, we do not provide login data to third parties. 

    You can write credentials here just check PRIVATE Reply so nobody can see them except us.

  •   Wendy replied privately
  •  2,498
    Aleksandar replied

    Thank you for keeping us up to date, Wendy.

    Kind Regards, 

    Aleksandar Vuković
    [email protected]

    Rate my support

    wpDataTables: FAQ | Facebook | Twitter | InstagramFront-end and back-end demo | Docs

    Amelia: FAQ | Facebook | Twitter | InstagramAmelia demo sites | Docs | Discord Community

    You can try wpDataTables add-ons before purchasing on these sandbox sites:

    Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables

  •   Wendy replied privately
  • [deleted] replied

    Hi Wendy!

    Thank you for the credentialssmile.png

    Aleksandar is out of the office so I will advise the other senior developer for assistance on Monday; we will update you on the situation as soon as possible.

  • [deleted] replied

    Hi Wendy!

    Here is an update:

    This seems to be a bug, because when follow filtering is on, it shows the first 10 entries no matter what is set up. We will try resolving this in the future updates; there is a quick fix but we would like to test it further and include into an update. 

    You can try it now by going to class.wpdatachart.php:1301 and replace the function loadChildWPDataTable() with this one:

    public function loadChildWPDataTable() {    if (empty($this->_wpdatatable_id)) {        return false;    }
        $loadAllRows = empty($this->_follow_filtering) || $this->_range_type !== 'all';
        $this->_wpdatatable = WPDataTable::loadWpDataTable($this->_wpdatatable_id, null, $loadAllRows);
    }

    This means that all rows will load; it should not make any conflicts, but if you do run into any please let me know.