Kendo.Mvc.UI.Fluent.ChartZoomableBuilder
Defines the fluent interface for configuring the chart zoomable options.
Methods
Mousewheel(System.Boolean)
Enable or disable mouse wheel zooming.
Example (ASPX)
@(Html.Kendo().Chart()
.Name("chart")
.Zoomable(zoomable => zoomable.Mousewheel(true))
)
Mousewheel(System.Action<Kendo.Mvc.UI.Fluent.ChartMousewheelZoomBuilder>)
Configure mouse wheel zooming.
Example (ASPX)
@(Html.Kendo().Chart()
.Name("chart")
.Zoomable(zoomable => zoomable.Mousewheel(mouse => mouse.Lock(ChartAxisLock.Y)))
)
Selection(System.Boolean)
Enable or disable selection zooming.
Example (ASPX)
@(Html.Kendo().Chart()
.Name("chart")
.Zoomable(zoomable => zoomable.Selection(true))
)
Selection(System.Action<Kendo.Mvc.UI.Fluent.ChartSelectionZoomBuilder>)
Configure selection zooming.
Example (ASPX)
@(Html.Kendo().Chart()
.Name("chart")
.Zoomable(zoomable => zoomable.Selection(select => select.Key(ChartActivationKey.Ctrl)))
)