TiPlotLegend.WrapRowDesiredCount
TiPlotLegend
Specifies the desired number of rows before wrapping the channel entries in
the Legend.
property WrapRowDesiredCount : Integer;
Description
Use WrapRowDesiredCount to get or set the desired number of rows before
wrapping the channel entries in the Legend.
Specifies the number of legend rows to reserve for the legend. If you specify
a value of 10, then three rows 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 rows.
If you wish to let the Legend manage the actual number of rows, then set WrapRowAutoCountEnabled to TRUE.
Recommended Setting for this property: 1
Example
Delphi
iComponent.Legend[0].WrapRowDesiredCount := 1;
C++ Builder
iComponent->Legend[0]->WrapRowDesiredCount = 1;
Contents | Index | Previous | Next