\Kendo\Dataviz\UI\ChartSeriesDefaultsLabelsToMargin

A PHP class representing the margin setting of ChartSeriesDefaultsLabelsTo.

Methods

bottom

The bottom margin of the to labels.

Returns

\Kendo\Dataviz\UI\ChartSeriesDefaultsLabelsToMargin

Parameters

$value float

Example

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

left

The left margin of the to labels.

Returns

\Kendo\Dataviz\UI\ChartSeriesDefaultsLabelsToMargin

Parameters

$value float

Example

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

The right margin of the to labels.

Returns

\Kendo\Dataviz\UI\ChartSeriesDefaultsLabelsToMargin

Parameters

$value float

Example

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

top

The top margin of the to labels.

Returns

\Kendo\Dataviz\UI\ChartSeriesDefaultsLabelsToMargin

Parameters

$value float

Example

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