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

WebChartControl.DrillDownToSeriesPoint(Object) Method

Drills down to the passed series point if the actual series template has the SeriesTemplate.SeriesPointDrillTemplate specified.

Namespace: DevExpress.XtraCharts.Web

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

Declaration

public bool DrillDownToSeriesPoint(
    object seriesPointObject
)

Parameters

Name Type Description
seriesPointObject Object

The data object by which a series point is generated.

Returns

Type Description
Boolean

true if the Chart Control drills down to the series point; otherwise false.

Remarks

The chart generates new series using the SeriesTemplate.SeriesPointDrillTemplate for them. You can prevent / handle the drill down state’s change using the WebChartControl.DrillDownStateChanging / WebChartControl.DrillDownStateChanged events.

Note

If a series point is summarized or aggregated from several data rows, you can use any of these rows to drill down to the series point.

See Also