TiPlotChannelCustom.DataMarkerShow

TiPlotChannelCustom

Sets whether a data marker is to be shown or not.

property DataMarkerShow[Index : Integer] : Boolean;

Description

Use DataMarkerShow to set or get whether a data marker is shown or not for the specified data point. Use the MarkersAllowIndividual property to specify whether markers use this property. If MarkersAllowIndividual is set to TRUE, then data points which have this property set to False will have no data marker and data points which have this property set to True will have their data markers shown.

Example

Delphi

//Hides 101st data point's marker

iComponent.Channel[0].DataMarkerShow[100] := FALSE;

C++ Builder

//Hides 101st data point's marker

iComponent->Channel[0]->DataMarkerShow[100] = FALSE;

Note: Index is zero based.

Contents | Index | Previous | Next