How can i change the column width of a Column Graph? Note: I have my x-axis values vertically aligned using the following options:
<option name="charting.axisLabelsX.majorLabelStyle.rotation">270</option>
<option name="charting.chart">column</option>
<option name="charting.chart.stackMode">stacked</option>
<option name="charting.legend.placement">bottom</option>
<option name="count">10</option>
<option name="charting.scaleX">1</option>
<option name="displayRowNumbers">true</option>
Even though i am able to set the with by the following option, it is only applied to the columns and not the x-axis values.
<option name="charting.chart.columnStyle.width">25</option>
Please suggest. Thanks.