Kendo.Mvc.UI.Fluent.ChartPolarAreaSeriesBuilder
Defines the fluent interface for configuring PolarArea series.
Methods
Line(System.Int32,System.String,Kendo.Mvc.UI.ChartDashType,Kendo.Mvc.UI.ChartPolarAreaStyle)
Configures the polar area chart line.
Parameters
width System.Int32
The line width.
color System.String
The line color.
dashType Kendo.Mvc.UI.ChartDashType
The line dashType.
style Kendo.Mvc.UI.ChartPolarAreaStyle
The line style.
Example (ASPX)
@(Html.Kendo().Chart()
.Name("Chart")
.Series(series => series
.PolarArea(s => s.Sales)
.Line(2, "red", ChartDashType.Dot, ChartPolarAreaStyle.Smooth)
)
)
Line(System.Action<Kendo.Mvc.UI.Fluent.ChartPolarAreaLineBuilder>)
Configures the polar area chart line.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.ChartPolarAreaLineBuilder>
The configuration action.
Example (ASPX)
@(Html.Kendo().Chart()
.Name("Chart")
.Series(series => series
.PolarArea(s => s.Sales)
.Line(line => line.Width(2))
)
)