lyleja Report post Posted January 28, 2019 I have created a simple stacked bar chart - but I want to force the yAxis to start at a non zero positive value. Seting yAxisMinValue does not appear to do anything! Can this be done ? thanks John <chart yAxisMinValue='40000' caption='Product-wise quarterly revenue in current year' subcaption='Harrys SuperMart' xaxisname='Quarter' yaxisname='Revenue (In USD)' numberprefix='$' theme='fusion'> <categories> <category label='Q1' /> <category label='Q2' /> <category label='Q3' /> <category label='Q4' /> </categories> <dataset seriesname='Food Products'> <set value='121000' /> <set value='135000' /> <set value='123500' /> <set value='145000' /> </dataset> <dataset seriesname='Non-Food Products'> <set value='131400' /> <set value='154800' /> <set value='98300' /> <set value='131800' /> </dataset> </chart> Share this post Link to post Share on other sites
Akash Biswas Report post Posted January 29, 2019 Hi John, Please check the below fiddle using your provided dataSource, and the y-axis minimum value is being set to 40000 correctly using 3.13.3-sr.1 version. Sample fiddle : http://jsfiddle.net/68yptb4o/ Kindly ensure that you are using the latest version of the library, that is 3.13.3-sr.1 Thanks, Akash. Share this post Link to post Share on other sites