Symbol: String;
The Symbol property is used to set a marker as a symbol.
To set a symbol you need to set the MarkerType property to Symbol (14) .
This example assumes that there is the Marker object of the IChartMarker type.
Sub Sym;
Var
Marker:IChartMarker;
Begin
Marker.Symbol:= 'Y';
Marker.MarkerType := ChartMarkerType.Symbol;
End Sub Sym;
After executing the example markers in a chart are displayed as the Y symbol.
See also: