Kendo.Mvc.UI.Fluent.ChartRadarAreaSeriesBuilder
Defines the fluent interface for configuring RadarArea series.
Methods
Line(System.Int32,System.String,Kendo.Mvc.UI.ChartDashType,Kendo.Mvc.UI.ChartRadarAreaStyle)
Configures the radar 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.ChartRadarAreaStyle
The line style.
Example (ASPX)
@(Html.Kendo().Chart()
.Name("Chart")
.Series(series => series
.RadarArea(s => s.Sales)
.Line(2, "red", ChartDashType.Dot, ChartScatterLineStyle.Smooth)
)
)
Line(System.Action<Kendo.Mvc.UI.Fluent.ChartRadarAreaLineBuilder>)
Configures the radar area chart line.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.ChartRadarAreaLineBuilder>
The configuration action.
Example (ASPX)
@(Html.Kendo().Chart()
.Name("Chart")
.Series(series => series
.RadarArea(s => s.Sales)
.Line(line => line.Opacity(0.2))
)
)