Jump to content
TurboMagic

TChart problems setting min/max of a 2nd righthand vertical axis

Recommended Posts

Hello,

 

I'm using the TChart wich comes with 10.3.3 out of the box.

I managed to add a 2nd right hand vertical axis via the TChart design editor, but I can neither there nor in code set min and max,

at least they will always be ignored and min will always be 0 and max 64000 or 65535.

 

I need -4090 and +4095 as min and max.

Here is the variant where I tried to change them in code:

ChartCurrentValues.Axes.Right.SubAxes[0].AutomaticMaximum := false;
ChartCurrentValues.Axes.Right.SubAxes[0].AutomaticMinimum := false;
ChartCurrentValues.Axes.Right.SubAxes[0].Automatic := false;
ChartCurrentValues.Axes.Right.SubAxes[0].SetMinMax(-4096, 4096);
ChartCurrentValues.Series[cMySeries1].CustomVertAxis := ChartCurrentValues.Axes.Right.SubAxes[0];
ChartCurrentValues.Series[cMySeries2].CustomVertAxis := ChartCurrentValues.Axes.Right.SubAxes[0]; 

 

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×