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

TcxGridChartItem.OnGetStoredProperties Event

In This Article

Enables you to customize the list of chart item properties that will be stored if an external store is produced.

#Declaration

Delphi
property OnGetStoredProperties: TcxGridChartItemGetStoredPropertiesEvent read; write;

#Remarks

Handle this event to customize the list of chart item properties that will be stored in an external store like a file, registry, stream, or custom storage as a part of the owner View. Whenever storing is initiated, a list of properties is produced. When the OnGetStoredProperties event is fired, the list already contains the names of chart item properties stored by default. The set of properties in the list depends upon chart item type (whether it is a series, category or data group).

The Sender parameter specifies the chart item whose properties will be stored.

The AProperties parameter specifies the list of properties to be stored.

For more information, see the example on how to handle the OnGetStoredProperties event for tabular Views.

See Also