Skip to main content
All docs
V24.2

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

TdxChartGetSeriesPointDrawParametersEventArgs.DrawParameters Property

Provides access to the processed series point‘s draw settings.

#Declaration

Delphi
property DrawParameters: TdxChartSeriesPointDrawParameters read;

#Property Value

Type Description
TdxChartSeriesPointDrawParameters

Stores series point draw settings.

To access all public API members, you need to cast the returned object to one of the following classes depending on the active series View:

TdxChartAreaSeriesPointDrawParameters
Stores series point draw settings in an Area series View.
TdxChartBarSeriesPointDrawParameters
Stores series point draw settings in a Bar series View.
TdxChartLineSeriesPointDrawParameters
Stores series point draw settings in a Line series View.
TdxChartSimpleSeriesPointDrawParameters
Stores series point draw settings in a simple series View.

Tip

You can call the DrawParameters.ClassType function to identify the actual draw settings class of the processed series point.

See Also