As previously announced via banners and our newsletters, support is no longer available through this platform.
For easier navigation, you can still click on "Submit a Ticket" here, choose the appropriate category, and you'll be redirected to the correct support channel for your plugin.
You can still access your previous tickets and browse public tickets, but please note that responding to tickets is no longer possible.
Paid customers: Please log in to your store account for support.
Pre-purchase questions: Use the support widget in the bottom-right corner of our websites:
https://wpamelia.com
https://wpdatatables.com
https://wpreportbuilder.com
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