Chart.Axes.Left.CalcIncrement
, which in certain cases, returns a default value of 20. I have a graph with the following values:
Code: Select all
Chart.Axes.Left.Maximum = 74;
Chart.Axes.Left.Minimum = 67;
Chart.Axes.Left.CalcIncrement
always returns 20.If I swap the axes around, so that I have:
Code: Select all
Chart.Axes.Bottom.Maximum = 74;
Chart.Axes.Bottom.Minimum = 67;
Chart.Axes.Bottom.CalcIncrement = 2
, as expected.If I change the units of the data to
Maximum = 7400
and Minimum = 6700
, I get an increment of 40, as expected.I would be pleased if you could look into this.
Regards
Errol