We're Moving to a New Support Platform – Starting June 1st!
We’re excited to let you know that starting June 1st, we’ll be transitioning to a new support system that will be available directly on our product websites – Amelia, wpDataTables, and Report Builder. In fact, the new support platform is already live for Amelia and wpDataTables, and we encourage you to reach out to us there.
You'll always be able to reach us through a widget in the bottom right corner of each website, where you can ask questions, report issues, or simply get assistance.
While we still do not offer live support, a new advanced, AI-powered assistant, trained on our documentation, use cases, and real conversations with our team, is there to help with basic to intermediate questions in no time.
We're doing our best to make this transition smooth and hassle-free. After June 1st, this current support website will redirect you to the new "Contact Us" pages on our product sites.
Thanks for your continued support and trust – we’re excited to bring you an even better support experience!
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