vikovs Posted November 7, 2017 Report Share Posted November 7, 2017 Hi everyone, I would like to increase the width of columns in a Caspio Column chart. Is there any solution for this? Many thanks in advance for your help!!! Quote Link to comment Share on other sites More sharing options...
0 Vitalikssssss Posted November 7, 2017 Report Share Posted November 7, 2017 Hi vikovs, To access and modify the width of columns in Caspio-generated HighCharts chart, you may use the following JS: <script src="https://code.jquery.com/jquery-3.2.1.js"></script> <script> $(document).ready( function () { var chart = Highcharts.charts[0]; chart.update( { plotOptions: { series: { pointWidth: 20 // change the column width here } }, } ); } ); </script> You can place this snippet of code into the Header of Chart datapage. Hope this helps. Quote Link to comment Share on other sites More sharing options...
0 vikovs Posted November 7, 2017 Author Report Share Posted November 7, 2017 Hi Vitalikssssss, Brilliant! It works! Thank you sooo much!!! Quote Link to comment Share on other sites More sharing options...
Question
vikovs
Hi everyone,
I would like to increase the width of columns in a Caspio Column chart. Is there any solution for this?
Many thanks in advance for your help!!!
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.