\Kendo\Dataviz\UI\StockChartNavigatorPaneTitleMargin
A PHP class representing the margin setting of StockChartNavigatorPaneTitle.
Methods
bottom
The bottom margin of the title.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorPaneTitleMargin
Parameters
$value float
Example
<?php
$margin = new \Kendo\Dataviz\UI\StockChartNavigatorPaneTitleMargin();
$margin->bottom(1);
?>
left
The left margin of the title.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorPaneTitleMargin
Parameters
$value float
Example
<?php
$margin = new \Kendo\Dataviz\UI\StockChartNavigatorPaneTitleMargin();
$margin->left(1);
?>
right
The right margin of the title.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorPaneTitleMargin
Parameters
$value float
Example
<?php
$margin = new \Kendo\Dataviz\UI\StockChartNavigatorPaneTitleMargin();
$margin->right(1);
?>
top
The top margin of the title.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorPaneTitleMargin
Parameters
$value float
Example
<?php
$margin = new \Kendo\Dataviz\UI\StockChartNavigatorPaneTitleMargin();
$margin->top(1);
?>