Hi there,
I am using TChart with two data series and two vertical axes (see picture).
I would like to have different ranges for the two vertical axes, but I am not successful. I looks like there is some sort of auto range issue.
On the left one I set
frmMain.chart.LeftAxis.Range.Max := f64S1RangeMax;
frmMain.chart.LeftAxis.Marks.Range.Max := f64S1RangeMax;
where f64S1RangeMax happen to be 250.
On the right one I set:
frmMain.chart.AxisList.Axes[2].Range.Max := 2048;
frmMain.chart.AxisList.Axes[2].Marks.Range.Max := 2048;
Because data on the right one is about 400, which is greater than the limit on the left side, the left axis gets the way it is in the picture.
Thank you.