vcl-dxchartcore-157fd29d.md
The base class for all series point draw setting classes.
TdxChartSeriesPointDrawParameters = class(
TObject
)
The TdxChartSeriesPointDrawParameters class does not introduce any public API members. This class only implements a universal access point for appearance settings within a series point customization event handler regardless of the active series View.
The TdxChartGetSeriesPointDrawParametersEventArgs.DrawParameters property references one of the terminal class descendants as a TdxChartSeriesPointDrawParameters object.
You need to cast the returned object to the corresponding class to access point draw settings. Call the Args.DrawParameters.ClassType function to identify the actual point settings class.
Do not use the TdxChartSeriesPointDrawParameters class directly. Use the following series View-specific descendants instead:
TdxChartSimpleSeriesPointDrawParametersStores series point draw settings in a simple series View.TdxChartAreaSeriesPointDrawParametersStores series point draw settings in an Area series View.TdxChartBarSeriesPointDrawParametersStores series point draw settings in a Bar series View.TdxChartLineSeriesPointDrawParametersStores series point draw settings in a Line series View.
TObject TdxChartSeriesPointDrawParameters
See Also