Chart.Axes.Left.CalcIncrement Error
Posted: Mon Nov 20, 2023 1:11 am
As far as I can ascertain, there appears to be an error in
In this case, the value of
If I swap the axes around, so that I have:
Then
If I change the units of the data to
I would be pleased if you could look into this.
Regards
Errol
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