ChartDrillDownBuilderBase
Properties
Series - TSeries
Methods
DrilldownField(System.String)
The data field which contains the value to use to drill down into detailed data for the point.
Parameters
value - System.String
The value for DrilldownField
Example
@(Html.Kendo().Chart()
.Name("Chart")
.Series(s => s.Donut(d => d.YourField).DrilldownField("YourField"))
)
DrilldownSeriesFactory(System.String)
A function that creates the drilldown series for a given point.The function should accept a single parameter, the point drilldownField value. The function should return a series configuration object or a Promise that resolves to one.
Parameters
handler - System.String
The name of the JavaScript function that will be evaluated.
Example
@(Html.Kendo().Chart()
.Name("Chart")
.Series(s => s.Donut(d => d.YourField).DrilldownSeriesFactory("handerName"))
)
DrilldownSeriesFactory(System.Func)
A function that creates the drilldown series for a given point.The function should accept a single parameter, the point drilldownField value. The function should return a series configuration object or a Promise that resolves to one.
Parameters
handler - System.Func<Object,Object>
The handler code wrapped in a text tag.
Example
@(Html.Kendo().Chart()
.Name("Chart")
.Series(s => s.Donut(d => d.YourField).DrilldownSeriesFactory(
@<text>
function(e) {
Handle the Click event inline.
}
</text>
))
)