Holiday Notice – Support Unavailable on April 18 and April 21
We just wanted to let you know that our support team will be offline on Friday, April 18th (Good Friday) and Monday, April 21st (Easter Monday) due to the holidays.
We'll be back on Tuesday, ready to assist you!
In the meantime, if you need any help, feel free to:
-
Use the support widget in the bottom right corner on our websites (Amelia and wpDataTables) — our latest AI-powered assistant is there 24/7 to help with basic and intermediate questions,
-
Browse our detailed documentation (Amelia, wpDataTables)
-
Explore helpful articles,
-
Or check out our YouTube channels for video guides!
Amelia YouTube Channel
wpDataTables YouTube Channel
Thank you for your understanding, and we wish you a wonderful holiday weekend!
Hello, I am creating a bar chart, and I can't figure out how to make the percentages appear. What data type for the column do I need to pick so it show as percentages, and how to show the percentage (e.g. add for each value in the table or using suffix) for the % to appear for the bar chart, but also for the Y axis?
I am allowed to have only 1x string for creating the chart, and float or integer data types doesn't allow to input the % sign. And adding it with suffix didn't show in front end - so kind of confusing how to make this works.
This is how it looks now: https://prnt.sc/21k3tv2 (using HighCharts) and I want to display everything in terms of pcnt.
Thanks
Hello David.
This can't be inherited from the table's prefix or suffix, so you will need to use wpDataCharts callbacks to display the percentage.
Take a look at this page, where we explained how this can be added on a chart with two Y axes. The same logic applies to one axis.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia 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
Hi Aleksandar,
Thanks for the information. Yes I am not a developer but I was able to get at least 50% of what I need, to show at the Y axis, however kind of struggling with the tooltip. One option is to just disable but that's not what I want, based on other indirect examples I couldn't make it work. Can you update examples of that or maybe share some quick fix for the tooltip?
I tried few different things based on the documentation but no luck with the tooltip
<script type="text/javascript">
jQuery(window).on('load',function(){
if( typeof wpDataChartsCallbacks == 'undefined' ){ wpDataChartsCallbacks = {}; }
wpDataChartsCallbacks[7] = function(obj){
obj.options.yAxis[0] = {
labels: {
format: '{value}%'
}
}
obj.options.tooltip = {
labels: {
format: '{value}%'
}
}
}
});
</script>
Thanks
Also it seems like with this code, the Y axis is not respecting the axis label set in the backend? It shows "values", this code is from the article you send and I just adjusted the chart ID.
Thanks
Hi again David.
Can you try using this callback?
If that doesn't work, please provide me a temporary WP-admin (administrator) user for your site where this happens, 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.
I can't promise anything, but I can take a look. Make sure to tell me what the chart ID is, and on which page it is located, so I know where to look.
Kind Regards,
Aleksandar Vuković
[email protected]
Rate my support
wpDataTables: FAQ | Facebook | Twitter | Instagram | Front-end and back-end demo | Docs
Amelia: FAQ | Facebook | Twitter | Instagram | Amelia 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