I have a stacked chart (line series), horizontally divided in two parts and the default/builtin right axis is already used for the top portion of the chart.
Is it possible to add a custom axis on the right side of the chart?
BTW, I have already read tutorial 4 about axis design
custom right axis
Re: custom right axis
Hi Christian,
Yes, you can add a custom axis at the right side with the OtherSide property:
And always keep in mind that an axis, to be shown, needs a series with values associated. For example:
Yes, you can add a custom axis at the right side with the OtherSide property:
Code: Select all
(Chart1.CustomAxes.Add as TChartAxis).OtherSide:=true;
Code: Select all
Chart1[0].CustomVertAxis:=Chart1.CustomAxes[0];
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |