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!
I often find that highcharts will set labels like "3000 M" or "1500 K", rather than shifting up to "3 B" or 1.5 M" Is there a way to change this? Just so you have an example, I've included a picture of a bar chart with the y-axis auto-labelled "0m, 500m, 1000m, 1500m,..." rather than "0b, .5b, 1b, 1.5b..."
I tried using the below code but it does not work
jQuery(window).on('load', function(){
Highcharts.setOptions({
labels:{
formatter:function(){
if(this.value >= 1000000000000){
return (this.value / 1000000000000) + 'T';
}
else if(this.value >= 1000000000){
return (this.value / 1000000000) + 'B';
}
else if(this.value >= 1000000) {
return (this.value / 1000000) + 'M';
}
else if(this.value >= 1000) {
return (this.value / 1000) + 'K';
}
else {
return this.value;
}
}
}
});
});
If you look at the attachment, the values are written in thousands. How can I solve this?
Hi, Fred
Thanks for reaching out to us
Chart engines do not inherit the number format you set up in wpDataTables, and there are no built-in options to change the number format in the chart, but you can use wpdatachart callbacks. Every chart exposes several options that customize its look and feel. Charts usually support custom options appropriate to that visualization.
For example, you can take a look at this example and see how we changed the number format in HighCharts.
Please note that using wpDataChart or wpDataTables callbacks requires a certain level of programming skills, and included support refers only to advice.
Kind Regards,
Miloš Jovanović
[email protected]
Rate my support
Try our FREE mapping plugin! MapSVG - easy Google maps, interactive SVG maps and floor plans, choropleth maps and much more - https://wordpress.org/plugins/mapsvg-lite-interactive-vector-maps/
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
Thank you for your reply Milos.
I tried running the code below but it did not work
jQuery(window).on('load', function(){
Highcharts.setOptions({
lang: {
numericSymbols:["k", "M", "B", "T", "P", "E"]
}
});
});
jQuery(window).on('load', function(){
Highcharts.setOptions({
labels:{
formatter:function(){
if(this.value >= 1000000000000){
return (this.value / 1000000000000) + 'T';
}
else if(this.value >= 1000000000){
return (this.value / 1000000000) + 'B';
}
else if(this.value >= 1000000) {
return (this.value / 1000000) + 'M';
}
else if(this.value >= 1000) {
return (this.value / 1000) + 'K';
}
else {
return this.value;
}
if( typeof wpDataChartsCallbacks == 'undefined' ){ wpDataChartsCallbacks = {}; }
wpDataChartsCallbacks[126] = function(obj){
}
}
}
});
});
I don't mind paying or if I you can link me with someone who can fix. This is a major issue
Hi, Fred
Apologies for the delayed response
Unfortunately, with custom callbacks, we can only provide examples, but can't fully provide support in that regard.
We can recommend reaching out to WP Kraken, if you wish, they can do quality custom solutions.
We just can't advise on their pricing.
Kind Regards,
Miloš Jovanović
[email protected]
Rate my support
Try our FREE mapping plugin! MapSVG - easy Google maps, interactive SVG maps and floor plans, choropleth maps and much more - https://wordpress.org/plugins/mapsvg-lite-interactive-vector-maps/
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