Kendo.Mvc.UI.Fluent.ChartCandlestickSeriesHighlightBuilder
Defines the fluent interface for configuring candlestick series highlight.
Methods
Border(System.Int32)
Sets the bubble highlight border width. The color is computed automatically from the base point color.
Parameters
width System.Int32
The bubble highlight border width.
Example (ASPX)
@(Html.Kendo().Chart()
.Name("Chart")
.Series(series => series.Candlestick(s => s.Sales)
.Highlight(highlight => highlight.Border(2))
)
)
Border(System.Int32,System.String)
Sets the bubble highlight border width.
Parameters
width System.Int32
The border width.
color System.String
The border color
Example (ASPX)
@(Html.Kendo().Chart()
.Name("Chart")
.Series(series => series.Candlestick(s => s.Sales)
.Highlight(highlight => highlight.Border(2, 'red'))
)
)
Border(System.Action<Kendo.Mvc.UI.Fluent.ChartBorderBuilder>)
Configures the highlight border
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.ChartBorderBuilder>
Example (ASPX)
@(Html.Kendo().Chart()
.Name("Chart")
.Series(series => series.Candlestick(s => s.Sales)
.Highlight(highlight => highlight.Border(border => border.Width(2).Color("red")))
)
)
Opacity(System.Double)
Sets the bubble highlight opacity.
Parameters
opacity System.Double
The bubble highlight opacity.
Example (ASPX)
@(Html.Kendo().Chart()
.Name("Chart")
.Series(series => series.Candlestick(s => s.Sales)
.Highlight(highlight => highlight.Opacity(0.8))
)
)
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.Candlestick(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.Candlestick(s => s.Sales)
.Highlight(highlight => highlight.Line(2, "orange"))
)
)
Line(System.Action<Kendo.Mvc.UI.Fluent.ChartAreaLineBuilder>)
Configures the candlestick 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.Candlestick(s => s.Sales)
.Highlight(highlight => highlight.Line(line => line.Width(2).Color("red")))
)
)