Using coilumn chart. How do we increase the width of the bars in the column chart (highcharts)? The bars look pretty narrow and unprofessional. I really need to increase the width of the bars.
I see from the documentation that pointWidth is what does it.
I have proceeded to try a few variations but have been unsuccessful. It doesn't render. Could you please help? I just need this once and I know you guys can instantly tell what simple line of code is required :)
Please note that using hooks or wpdatatable and wpDataChart callbacks requires certain level of programming skills and included support refers only to advice. They are not included in the provided support for the plugin.
I'll take a look, though, gladly.
Please provide me a temporary WP-admin login 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 party.
You can write credentials here just check Private Reply so nobody can see them except us.
Using coilumn chart. How do we increase the width of the bars in the column chart (highcharts)? The bars look pretty narrow and unprofessional. I really need to increase the width of the bars.
I see from the documentation that pointWidth is what does it.
I tried this
<script type="text/javascript">
jQuery(window).load(function(){
if( typeof wpDataChartsCallbacks == 'undefined' ){ wpDataChartsCallbacks = {}; }
wpDataChartsCallbacks[3] = function(obj){
obj.options.chart.backgroundColor = '#fff'; obj.options.chart.series.column.pointWidth = 25;
}
});
</script>
I have proceeded to try a few variations but have been unsuccessful. It doesn't render. Could you please help? I just need this once and I know you guys can instantly tell what simple line of code is required :)
Hello Vijay
Please note that using hooks or wpdatatable and wpDataChart callbacks requires certain level of programming skills and included support refers only to advice. They are not included in the provided support for the plugin.
I'll take a look, though, gladly.
Please provide me a temporary WP-admin login 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 party.
You can write credentials here just check Private Reply so nobody can see them except us.
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
Never mind. Figured it out.
css is the best way to do things when you want overall style change.
Ex: this changes all labels in the chart.
.highcharts-axis-labels text {
fill: yellow !important;
}
Thank you. All set I think.
Good to hear the issue has been resolved, Vijay
If you have any further questions or issues, please feel free to open a new ticket, and we'll gladly help.
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