TiStripChart.ChannelVisible

TiStripChart See Also

Used to hide or show a data channel is the plot area.

procedure ChannelVisible[Index: Integer] : Boolean;

Description

Use the ChannelVisible property to show or hide a specific channel in the data view. The Channel will still show in the legend even if the property is False. Use the ChannelVisibleInLegend property to hide in the legend.

Example

Delphi

iComponent.ChannelVisible[1] := False; //Sets 2nd Channel Invisible in Data Plot

C++ Builder

iComponent->ChannelVisible[1] = False; //Sets 2nd Channel Invisible in Data Plot

Note: The index value is 0 based.

Contents | Index | Previous | Next