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.v24.1.Web.dll
NuGet Package: DevExpress.Web.Visualization
Declaration
[DefaultValue(true)]
[Obsolete("This property is obsolete and isn't used at all.")]
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.