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.2.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;

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Diagram property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also