Skip to main content

TcxGridChartOptionsCustomize.DataDrillUpMethod Property

Specifies the manner in which end-users can drill up data.

Declaration

property DataDrillUpMethod: TcxGridChartDataDrillUpMethod read; write; default ddumMouseRightButtonClick;

Property Value

Type Default
TcxGridChartDataDrillUpMethod ddumMouseRightButtonClick

Remarks

You can also use this property to prohibit end-users from activating lower levels of details (relative to the currently active data level).

All possible values for the DataDrillUpMethod property are listed in the following table.

Value Meaning
ddumNone End-users are unable to perform a drill-up.
ddumValueMouseRightButtonClick End-users can perform a drill-up by right-clicking data markers of the corresponding series values.
ddumMouseRightButtonClick End-users can perform a drill-up by right-clicking anywhere in the View’s area.

Use the View’s ActiveDataGroup and ActiveDataLevel properties to programmatically navigate data levels.

The default value of the DataDrillUpMethod property is ddumMouseRightButtonClick.

See Also