Defines appearance and control options for a TRSCustomChart.
Namespace: RSChartConsts
Delphi
|
type
TChartOption = (
coColorEachPoint,
coShowInLegend,
coAllowSingleValue,
coUseVerticalOffset,
coLabelEachPoint,
coHideShadow,
coZoomFonts,
coZoomPen,
coAllowSelection,
coColorSelection,
coEmphasizeSelection
);
|
|
Name
|
Description
|
|
coAllowSelection
|
Specifies whether the chart should allow values to be selected
|
|
coAllowSingleValue
|
Specifies whether this chart can have zero or one Values and still be drawn. Many charts, like the line chart, need a minimum of 2 values for visual representation.
|
|
coColorEachPoint
|
Specifies if each point of a chart should be drawn in its specific Color or in the chart's base Color.
|
|
coColorSelection
|
Specifies if a chart value should be drawn in the SelectionColor when the it is selected
|
|
coEmphasizeSelection
|
Specifies if a chart value should be emphasized (usually by adding to the pen width) when the it is selected
|
|
coHideShadow
|
Specifies whether the chart's shadow should be drawn
|
|
coLabelEachPoint
|
Specifies whether each point/value of a chart should be labeled with its Caption
|
|
coShowInLegend
|
Specifies whether the chart should be shown in the TRSCustomChartPanel's Legend or not
|
|
coUseVerticalOffset
|
Specifies whether the chart should be drawn within its axes or offset by the VerticalOffset. This option controls what the GetAdjOffsetVertical method returns.
|
|
coZoomFonts
|
Specifies whether the chart's labels should be magnified when its vertical axis is zoomed in
|
|
coZoomPen
|
Specifies whether the pen width (or stroke thickness) should be magnified a chart is zoomed in
|
Top
|