TiStripChart.LabelChannelText

TiStripChart See Also

Used to set the displayed text of a specific label for a specific label channel.

property LabelChannelText[Channel, Index : Integer] : String;

Description

Use the LabelChannelText property to get or set the displayed text of specific label for a specific label channel. Index is the time index of where you want the data label to appear on the XAxis scale. Each time index corresponds to a specific XAxis value.

Example

Delphi

iComponent.LabelChannelText[1, 20] := 'xyz'; //Sets 2nd Label Channel

C++ Builder

iComponent->LabelChannelText[1][20] = "xyz"; //Sets 2nd Label Channel

Note: The channel and index values are 0 based.

Contents | Index | Previous | Next