Kendo.Mvc.UI.Fluent.ChartOHLCSeriesHighlightBuilder
Defines the fluent interface for configuring OHLC series highlight.
Properties
Highlight
Gets or sets the highlight
Methods
Line(System.Int32)
Configures the candlestick highlight line width.
Parameters
width System.Int32
The lines width.
Example (ASPX)
@(Html.Kendo().Chart()
.Name("Chart")
.Series(series => series
.Area(s => s.Sales)
.Highlight(highlight => highlight.Line(2))
)
)
Line(System.Int32,System.String)
Configures the candlestick highlight lines.
Parameters
width System.Int32
The lines width.
color System.String
The lines color.
Example (ASPX)
@(Html.Kendo().Chart()
.Name("Chart")
.Series(series => series
.Area(s => s.Sales)
.Highlight(highlight => highlight.Line(2, "yellow"))
)
)
Line(System.Action<Kendo.Mvc.UI.Fluent.ChartAreaLineBuilder>)
Configures the OHLC highlight chart lines.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.ChartAreaLineBuilder>
The configuration action.
Example (ASPX)
@(Html.Kendo().Chart()
.Name("Chart")
.Series(series => series
.Area(s => s.Sales)
.Highlight(highlight => highlight.Line(line => line.Width(2).Color("yellow")))
)
)