Defines the legend styles
Namespace: RSChartConsts
Delphi
|
type
TRSLegendStyle = (
lsAutomatic,
lsChartNames,
lsValues,
lsChartNameAndLastValue);
|
|
Name
|
Description
|
|
lsAutomatic
|
The Legend automatically chooses the legend style based on what is being shown in the chart panel. If only one chart is being displayed, the style is lsValues. If more than one chart is being displayed, the style is lsChartNames.
|
|
lsChartNameAndLastValue
|
Similar to lsCharNames, each label in the legend is a different chart. However, the last value in the chart is also appended to the chart caption.
|
|
lsChartNames
|
Each label in the legend is a different chart. The charts' Captions are displayed. If the Caption is an empty string, then the TComponent.Name is used. If that is an empty string, then the ClassName is used.
|
|
lsValues
|
Each label in the legend is a value from the chart.
|
Top
|