\Kendo\Dataviz\UI\ChartZoomableSelection

A PHP class representing the selection setting of ChartZoomable.

Methods

key

Specifies a keyboard key that should be pressed to activate the selection. The supported values are: "none" - No key is required.; "ctrl" - The "ctrl" key should be pressed.; "shift" - The "shift" key should be pressed. or "alt" - The "alt" key should be pressed..

Returns

\Kendo\Dataviz\UI\ChartZoomableSelection

Parameters

$value string

Example

<?php
$selection = new \Kendo\Dataviz\UI\ChartZoomableSelection();
$selection->key('value');
?>

lock

Specifies an axis that should not be zoomed. The supported values are none, x and y.

Returns

\Kendo\Dataviz\UI\ChartZoomableSelection

Parameters

$value string

Example

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