TiStripChart.ChannelVisibleInLegend

TiStripChart See Also

Used to hide or show a data channel in the legend.

procedure ChannelVisibleInLegend[Index : Integer] : Boolean;

Description

Use ChannelVisibleInLegend to show or hide a specific channel in the legend. The Channel will still show in the data plot area if this property is set to False. Use the ChannelVisible property to hide in the data plot area.

Example

Delphi

iComponent.ChannelVisibleInLegend[1] := False; //Sets 2nd Channel Invisible in Legend

C++ Builder

iComponent->ChannelVisibleInLegend[1] = False; //Sets 2nd Channel Invisible in Legend

Note: The index value is 0 based.

Contents | Index | Previous | Next