\Kendo\Dataviz\UI\StockChartNavigatorPaneMargin

A PHP class representing the margin setting of StockChartNavigatorPane.

Methods

bottom

The bottom margin of the navigator pane.

Returns

\Kendo\Dataviz\UI\StockChartNavigatorPaneMargin

Parameters

$value float

Example

<?php
$margin = new \Kendo\Dataviz\UI\StockChartNavigatorPaneMargin();
$margin->bottom(1);
?>

left

The left margin of the navigator pane.

Returns

\Kendo\Dataviz\UI\StockChartNavigatorPaneMargin

Parameters

$value float

Example

<?php
$margin = new \Kendo\Dataviz\UI\StockChartNavigatorPaneMargin();
$margin->left(1);
?>

The right margin of the navigator pane.

Returns

\Kendo\Dataviz\UI\StockChartNavigatorPaneMargin

Parameters

$value float

Example

<?php
$margin = new \Kendo\Dataviz\UI\StockChartNavigatorPaneMargin();
$margin->right(1);
?>

top

The top margin of the navigator pane.

Returns

\Kendo\Dataviz\UI\StockChartNavigatorPaneMargin

Parameters

$value float

Example

<?php
$margin = new \Kendo\Dataviz\UI\StockChartNavigatorPaneMargin();
$margin->top(1);
?>
In this article
Not finding the help you need?