TeeChart csLine with Stairs

Hi,

I would like to set the property "Stairs" by script:

addSeries (csLine);
SeriesData.DataType := dtFixedData;
Series.Title := RowStr;
Series.Stairs := true;

I get an access violaiton error at the line with "Stairs"
Is there any chance to set that property by script?

Thanks a lot for help,

Best regards,
Reinhard

Comments

  • gpigpi
    edited 2:05AM
    Try
    TLineSeries(Chart1.Series[0]).Stairs := True;
    

Leave a Comment