Skip to main content

WebChartControl.Diagram Property

Gets the web chart control’s diagram and provides access to its settings.

Namespace: DevExpress.XtraCharts.Web

Assembly: DevExpress.XtraCharts.v23.1.Web.dll

NuGet Package: DevExpress.Web.Visualization

Declaration

public Diagram Diagram { get; set; }

Property Value

Type Description
Diagram

A Diagram object that represents the chart control’s diagram.

Remarks

Note that you can’t set the Diagram property manually. It’s available to be set for serialization purposes only. For more information on the chart control’s diagram see the Diagram object’s description.

Example

The following code shows how to change the XYDiagram.Rotated property value. Note that this code is valid only if the current chart’s diagram (returned by its ChartControl.Diagram or WebChartControl.Diagram property) is an XYDiagram or its descendant.

((DevExpress.XtraCharts.XYDiagram)chartControl1.Diagram).Rotated = true;
See Also