Skip to main content
A newer version of this page is available. .

WebChartControl.EnableClientSidePointToDiagram Property

OBSOLETE

This property is obsolete and isn't used at all.

Specifies whether it’s allowed to perform conversions between screen coordinates and diagram coordinates on the client-side.

Namespace: DevExpress.XtraCharts.Web

Assembly: DevExpress.XtraCharts.v18.2.Web.dll

Declaration

[Obsolete("This property is obsolete and isn't used at all.")]
[DefaultValue(true)]
public bool EnableClientSidePointToDiagram { get; set; }

Property Value

Type Default Description
Boolean **true**

true if the coordinate conversions are allowed; otherwise, false.

Remarks

Enable the EnableClientSidePointToDiagram property, to allow the client-side conversions between screen coordinates and diagram coordinates, using the following methods.

Diagram Type Conversion Methods
Radar and Polar Diagrams ASPxClientRadarDiagram.DiagramToPoint and ASPxClientRadarDiagram.PointToDiagram
XY-Diagram ASPxClientXYDiagram2D.DiagramToPoint and ASPxClientXYDiagram2D.PointToDiagram

For instance, this allows you to implement the client-side editing of your Web Chart, or to draw custom graphics (e.g. tied to its visual elements) on callbacks.

Note

Enabling this property may cause a significant increase in the amount of traffic between the server and client. When the conversion of coordinates isn’t required, leaving the EnableClientSidePointToDiagram property disabled may help in reducing the traffic.

For more information, see the following documents.

See Also