Defines the selection action that can be performed when Select method is called. When the Select method determines a chart value is within the selection rectangle, it uses a parameter of this type to select/deselect it.
Namespace: RSChartConsts
Delphi
|
type
TRSChartSelectionAction = (
csaSelect,
csaDeselect,
csaToggle);
|
|
Name
|
Description
|
|
csaDeselect
|
Deselect the chart value. If the chart value is already deselected, it stays deselected.
|
|
csaSelect
|
Select the chart value. If the chart value is already selected, it stays selected.
|
|
csaToggle
|
Toggle the selection of the chart value. If the chart value is selected, it becomes deselected. If the chart value is not selected, it becomes seleced.
|
Top
|