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

WebChartControl.SetObjectSelection(Object) Method

Selects the specified chart element at runtime.

Namespace: DevExpress.XtraCharts.Web

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

Declaration

public void SetObjectSelection(
    object obj
)

Parameters

Name Type Description
obj Object

A Object which specifies the chart element to select.

Remarks

Use the SetObjectSelection method to implement custom selection of chart elements at runtime. To clear the selection of any chart element, the WebChartControl.ClearSelection method should be used.

To enable standard selection of chart elements by end-users at runtime, set the ChartControl.RuntimeSelection property to true.

Note

Note that the SetObjectSelection method is a server-side method.

See Also