TcxGridChartOptionsCustomize.DataDrillUpMethod Property
Specifies how users can drill-up data.
Declaration
property DataDrillUpMethod: TcxGridChartDataDrillUpMethod read; write; default ddumMouseRightButtonClick;
Property Value
Type | Default | Description |
---|---|---|
TcxGridChartDataDrillUpMethod | ddumMouseRightButtonClick | The active drill-up end-user option. |
Remarks
You can also use this property to prevent users from activating lower levels of details (relative to the currently active data level).
Available Options
Value | Description |
---|---|
ddumNone | Users are unable to perform a drill-up. |
ddumValueMouseRightButtonClick | Users can right-click data markers to perform a drill-up operation for corresponding series values. |
ddumMouseRightButtonClick | Users can right-click anywhere in the View’s area to perform a drill-up operation. |
You can use the View’s ActiveDataGroup and ActiveDataLevel properties to navigate data levels in code.
Default Value
The DataDrillUpMethod
property’s default value is ddumMouseRightButtonClick.
See Also