Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxGridChartOptionsCustomize.DataDrillUpMethod Property

Specifies how users can drill-up data.

#Declaration

Delphi
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