TiPlotLegend.WrapRowAutoCountEnabled

TiPlotLegend

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

property WrapRowAutoCountEnabled : Boolean;

Description

Use WrapRowAutoCountEnabled to get or set whether the number of rows in the Legend is automatically determined.

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

If you wish to manually specify a "fixed" number of row, then set this property to FALSE and modify WrapRowDesiredCount.

Recommended Setting for this property: True

Example

Delphi

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

C++ Builder

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

Contents | Index | Previous | Next