Kendo.Mvc.UI.Fluent.ChartSelectionZoomBuilder
Defines the fluent interface for configuring the chart selection zoom options.
Methods
Lock(Kendo.Mvc.UI.ChartAxisLock)
Lock the specified axis during zooming.
Example (ASPX)
@(Html.Kendo().Chart()
.Name("chart")
.Zoomable(zoom => zoom.Selection(select => select.Lock(ChartAxisLock.Y)))
)
Key(Kendo.Mvc.UI.ChartActivationKey)
Set the key that shuold be pressed to activate selection zooming.
Example (ASPX)
@(Html.Kendo().Chart()
.Name("chart")
.Zoomable(zoom => zoom.Selection(select => select.Key(ChartActivationKey.Ctrl)))
)