Series Use both left & right axis

Hi,

I have a chart with 2 series.Teechart can show the values for series 1 on the left axis, and series 2 on the right axis but I cannot see how to do this in your charts. Is this possible?

Thanks,

Ken

Yes this is possible with the following code:




var
  c: TTMSFNCChart;
begin
  c := TTMSFNCChart.Create(Self);
  c.Parent := Self;
  c.InitSample;


  c.Series[2].Free; //remove third series


  c.Series[0].YValues.Positions := [ypLeft];
  c.Series[1].YValues.Positions := [ypRight];

Grate, thanks.