An die private properties kommst du über den klassischen class hack:
Delphi-Quellcode:
type
THackedFastlineSeries = class(TFastlineSeries)
public
IgnoreNulls: boolean;
end;
begin
...
THackedFastlineSeries(Chart1.Series[0]).IgnoreNulls := true;
...
end;
marabu
Wahrscheinlich ist es eine property - dann eher "property IgnoreNulls;"