Hi,
When i have too many items in the datasource (aproximately 15 in this example), the Y axis shows only half of the labels. Is there a way I could fix this?
Thanks
Thanks for your help, it worked perfectly.
Hello Matias,
I am following up and wanted to know if you had any additional questions?
Off of the Axis object is a property called interval which controls the frequency of the labels. If you set it to 1 the labels will appear for each bar.
So the code would look something like
// assuming you have a variable called defaultSeries which points to the stacked bar series
defaultSeries.yAxis.interval = 1;