TiPlotLegend.WrapColDesiredCount

TiPlotLegend

Specifies the desired number of columns before wrapping the channel entries in the Legend.

property WrapColDesiredCount : Integer;

Description

Use WrapColDesiredCount to get or set the desired number of columns before wrapping the channel entries in the Legend.

Specifies the number of legend columns to reserve for the legend. If you specify a value of 3, then three columns will be reserved even if they are not filled with channel entries. This is useful when you will be varying the number of channels, but want to keep the legend at a certain size and specified number of columns.

Note: colums refers to a column of channel entries, not to the "XValue, "YValue", "XMean", "YMean", etc. columns. The original Plot Pack only supported one column of channel entries.

If you wish to let the Legend manage the actual number of columns, then set WrapColAutoCountEnabled to TRUE.

Recommended Setting for this property: 1

Example

Delphi

iComponent.Legend[0].WrapColDesiredCount := 1;

C++ Builder

iComponent->Legend[0]->WrapColDesiredCount = 1;

Contents | Index | Previous | Next