\Kendo\Dataviz\UI\StockChartNavigatorSelect

A PHP class representing the select setting of StockChartNavigator.

Methods

from

The lower boundary of the selected range.

Returns

\Kendo\Dataviz\UI\StockChartNavigatorSelect

Parameters

$value date

Example

<?php
$select = new \Kendo\Dataviz\UI\StockChartNavigatorSelect();
$select->from(new date());
?>

mousewheel

The mousewheel configuration of the selection.If set to false the mousewheel will not update the selection.

Returns

\Kendo\Dataviz\UI\StockChartNavigatorSelect

Parameters

$value boolean|\Kendo\Dataviz\UI\StockChartNavigatorSelectMousewheel|array

Example - using boolean

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

Example - using \Kendo\Dataviz\UI\StockChartNavigatorSelectMousewheel

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

Example - using array

<?php
$select = new \Kendo\Dataviz\UI\StockChartNavigatorSelect();
$reverse = true;
$select->mousewheel(array('reverse' => $reverse));
?>

to

The upper boundary of the selected range.

Returns

\Kendo\Dataviz\UI\StockChartNavigatorSelect

Parameters

$value date

Example

<?php
$select = new \Kendo\Dataviz\UI\StockChartNavigatorSelect();
$select->to(new date());
?>
In this article
Not finding the help you need?