TeeChart csLine with Stairs

edited 10:11PM in FastReport 4.0
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 10:11PM
    Try
    TLineSeries(Chart1.Series[0]).Stairs := True;
    

Leave a Comment