\Kendo\Dataviz\UI\ChartCategoryAxisItemSelectMousewheel

A PHP class representing the mousewheel setting of ChartCategoryAxisItemSelect.

Methods

reverse

If set to true will reverse the mouse wheel direction. The normal direction is down for "zoom out", up for "zoom in".

Returns

\Kendo\Dataviz\UI\ChartCategoryAxisItemSelectMousewheel

Parameters

$value boolean

Example

<?php
$mousewheel = new \Kendo\Dataviz\UI\ChartCategoryAxisItemSelectMousewheel();
$mousewheel->reverse(true);
?>

zoom

The zoom direction.The supported values are: "both" - zooming expands and contracts the selection both sides; "left" - zooming expands and contracts the selection left side only or "right" - zooming expands and contracts the selection right side only.

Returns

\Kendo\Dataviz\UI\ChartCategoryAxisItemSelectMousewheel

Parameters

$value string

Example

<?php
$mousewheel = new \Kendo\Dataviz\UI\ChartCategoryAxisItemSelectMousewheel();
$mousewheel->zoom('value');
?>
In this article
Not finding the help you need?