\Kendo\Dataviz\UI\ChartPaneMargin

A PHP class representing the margin setting of ChartPane.

Methods

bottom

The bottom margin of the chart panes.

Returns

\Kendo\Dataviz\UI\ChartPaneMargin

Parameters

$value float

Example

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

left

The left margin of the chart panes.

Returns

\Kendo\Dataviz\UI\ChartPaneMargin

Parameters

$value float

Example

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

The right margin of the chart panes.

Returns

\Kendo\Dataviz\UI\ChartPaneMargin

Parameters

$value float

Example

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

top

The top margin of the chart panes.

Returns

\Kendo\Dataviz\UI\ChartPaneMargin

Parameters

$value float

Example

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