Skip to main content

WebChartControl.JSProperties Property

Enables you to supply any server data that can then be parsed on the client.

Namespace: DevExpress.XtraCharts.Web

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

NuGet Package: DevExpress.Web.Visualization

#Declaration

public Dictionary<string, object> JSProperties { get; }

#Property Value

Type Description
Dictionary<String, Object>

The collection of property names and their values.

#Remarks

In some instances, it is necessary to obtain server information on the client. The JSProperties property enables you to declare temporary client properties. The JSProperties property represents a collection of property names and their values. Once declared, a property can be accessed on the client.

Note

The only requirement is that property names must begin with the ‘cp’ prefix, to avoid rewriting the WebChartControl‘s base properties.

See Also