I have some very small graphs that I'm using as trending indicators on a dashboard and I'd like to increase the gap between the major axis. I tried to apply majorUnits to the valueAxis object with a number, however, this has no effect. Can you let me know if it's possible to change the gap between major axis on the value Axis? Thanks
valueAxis: { min: @items.Select(m => m.Members).Min(), max: @items.Select(m => m.Members).Max(), labels: { font: "9px Arial", format: "{0:n0}" }, majorUnits: 25}