\Kendo\Dataviz\UI\ChartPannable

A PHP class representing the pannable setting of Chart.

Methods

key

Specifies the key that should be pressed to activate panning. 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\ChartPannable

Parameters

$value string

Example

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

lock

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

Returns

\Kendo\Dataviz\UI\ChartPannable

Parameters

$value string

Example

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