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

TdxChartXYSeries.View Property

Provides access to the active series View settings.

#Declaration

Delphi
property View: TdxChartXYSeriesCustomView read; write;

#Property Value

Type Description
TdxChartXYSeriesCustomView

Stores XY series View settings.

#Remarks

Cast the View property value to one of the following classes depending on the active series View to access all public API members:

TdxChartXYSeriesAreaView
Stores Simple Area View settings.
TdxChartXYSeriesStackedAreaView
Stores Stacked Area View settings.
TdxChartXYSeriesFullStackedAreaView
Stores Full-Stacked Area View settings.
TdxChartXYSeriesBarView
Stores Bar View settings.
TdxChartXYSeriesStackedBarView
Stores Stacked Bar View settings.
TdxChartXYSeriesFullStackedBarView
Stores Full-Stacked Bar View settings.
TdxChartXYSeriesLineView
Stores Line View settings.
TdxChartXYSeriesStackedLineView
Stores Stacked Line View settings.
TdxChartXYSeriesFullStackedLineView
Stores Full-Stacked Line View settings.

Tip

To identify the actual View type, call the View.ClassType function.

See Also