Skip to main content

ChartView.ViewType Property

Gets the type of the chart view.

Namespace: DevExpress.Spreadsheet.Charts

Assembly: DevExpress.Spreadsheet.v23.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

ChartType ViewType { get; }

Property Value

Type Description
ChartType

A ChartType enumeration member.

Available values:

Show 81 items
Name Description
ColumnClustered

A clustered column chart.

ColumnStacked

A stacked column chart.

ColumnFullStacked

A 100% stacked column chart.

Column3DClustered

A 3-D clustered column chart.

Column3DStacked

A 3-D stacked column chart.

Column3DFullStacked

A 3-D 100% stacked column chart.

Column3DStandard

A 3-D column chart.

Column3DClusteredCylinder

A clustered cylinder chart.

Column3DStackedCylinder

A stacked cylinder chart.

Column3DFullStackedCylinder

A 100% stacked cylinder chart.

Column3DStandardCylinder

A 3-D cylinder chart.

Column3DClusteredCone

A clustered cone chart.

Column3DStackedCone

A stacked cone chart.

Column3DFullStackedCone

A 100% stacked cone chart.

Column3DStandardCone

A 3-D cone chart.

Column3DClusteredPyramid

A clustered pyramid chart.

Column3DStackedPyramid

A stacked pyramid chart.

Column3DFullStackedPyramid

A 100% stacked pyramid chart.

Column3DStandardPyramid

A 3-D pyramid chart.

Line

A line chart.

LineStacked

A stacked line chart.

LineFullStacked

A 100% stacked line chart.

LineMarker

A line chart with markers.

LineStackedMarker

A stacked line chart with markers.

LineFullStackedMarker

A 100% stacked line chart with markers.

Line3D

A 3-D line chart.

Pie

A pie chart.

Pie3D

A 3-D pie chart.

PieExploded

An exploded pie chart.

Pie3DExploded

A 3-D exploded pie chart.

PieOfPie

A pie-of-pie chart.

BarOfPie

A bar-of-pie chart.

BarClustered

A clustered bar chart.

BarStacked

A stacked bar chart.

BarFullStacked

A 100% stacked bar chart.

Bar3DClustered

A 3-D clustered bar chart.

Bar3DStacked

A 3-D stacked bar chart.

Bar3DFullStacked

A 3-D 100% stacked bar chart.

Bar3DClusteredCylinder

A clustered horizontal cylinder chart.

Bar3DStackedCylinder

A stacked horizontal cylinder chart.

Bar3DFullStackedCylinder

A 100% stacked horizontal cylinder chart.

Bar3DClusteredCone

A clustered horizontal cone chart.

Bar3DStackedCone

A stacked horizontal cone chart.

Bar3DFullStackedCone

A 100% stacked horizontal cone chart.

Bar3DClusteredPyramid

A clustered horizontal pyramid chart.

Bar3DStackedPyramid

A stacked horizontal pyramid chart.

Bar3DFullStackedPyramid

A 100% stacked horizontal pyramid chart.

Area

An area chart.

AreaStacked

A stacked area chart.

AreaFullStacked

A 100% stacked area chart.

Area3D

A 3-D area chart.

Area3DStacked

A 3-D stacked area chart.

Area3DFullStacked

A 3-D 100% stacked area chart.

ScatterMarkers

A scatter chart.

ScatterSmoothMarkers

A scatter chart with smooth lines and markers.

ScatterSmooth

A scatter chart with smooth lines.

ScatterLine

A scatter chart with straight lines.

ScatterLineMarkers

A scatter chart with straight lines and markers.

StockHighLowClose

A high-low-close stock chart.

StockOpenHighLowClose

An open-high-low-close stock chart.

StockVolumeHighLowClose

A volume-high-low-close stock chart.

StockVolumeOpenHighLowClose

A volume-open-high-low-close stock chart.

Surface

A contour chart.

SurfaceWireframe

A wireframe contour chart.

Surface3D

A 3-D surface chart.

Surface3DWireframe

A wireframe 3-D surface chart.

Doughnut

A doughnut chart.

DoughnutExploded

An exploded doughnut chart.

Bubble

A bubble chart.

Bubble3D

A 3-D bubble chart.

Radar

A radar chart.

RadarMarkers

A radar chart with markers.

RadarFilled

A filled radar chart.

BoxAndWhisker

A box and whisker chart.

Funnel

A funnel chart.

Histogram

A histogram chart.

Pareto

A Pareto chart.

Sunburst

A sunburst chart.

Treemap

A treemap chart.

Waterfall

A waterfall chart.

Combo

A combination chart. Use the Series.ChangeType method to change the type of an existing data series and create a combination chart.

Remarks

A chart view of a particular type contains series of the same type. To display a data series using the specific type, add it to the ChartView.Series collection of the required type.

See Also