TiPlotLegend.WrapColAutoCountEnabled

TiPlotLegend

Specifies whether the number of columns displayed in the Legend before wrapping the channel entries is automatically determined.

property WrapColAutoCountEnabled : Boolean;

Description

Use WrapColAutoCountEnabled to get or set whether the number of columns in the Legend is automatically determined.

Specifies whether the legend automatically adjusts the number of columns to take up the least amount of space within the control. If increasing the number of columns decreases the "footprint" of the legend, then the legend will automatically increase the number of displayed columns. After the maximum has been exceeded, then scroll bars will appear

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 manually specify a "fixed" number of columns, then set this property to FALSE and modify WrapColDesiredCount.

Recommended Setting for this property: True

Example

Delphi

iComponent.Legend[0].WrapColAutoCountEnabled := True;

C++ Builder

iComponent->Legend[0]->WrapColAutoCountEnabled = True;

Contents | Index | Previous | Next