New to Telerik UI for ASP.NET MVC? Download free 30-day trial

ChartZoomableBuilder

Methods

Mousewheel(System.Boolean)

Enable or disable mouse wheel zooming.

Parameters

enabled - System.Boolean

Example


            @(Html.Kendo().Chart()
                    .Name("chart")
                    .Zoomable(zoomable => zoomable.Mousewheel(true))
            )

Mousewheel(System.Action)

Configure mouse wheel zooming.

Parameters

configurator - System.Action<ChartMousewheelZoomBuilder>

Example


            @(Html.Kendo().Chart()
                    .Name("chart")
                    .Zoomable(zoomable => zoomable.Mousewheel(mouse => mouse.Lock(ChartAxisLock.Y)))
            )

Selection(System.Boolean)

Enable or disable selection zooming.

Parameters

enabled - System.Boolean

Example


            @(Html.Kendo().Chart()
                    .Name("chart")
                    .Zoomable(zoomable => zoomable.Selection(true))
            )

Selection(System.Action)

Configure selection zooming.

Parameters

configurator - System.Action<ChartSelectionZoomBuilder>

Example


            @(Html.Kendo().Chart()
                    .Name("chart")
                    .Zoomable(zoomable => zoomable.Selection(select => select.Key(ChartActivationKey.Ctrl)))
            )

In this article
Not finding the help you need?