\Kendo\Dataviz\UI\ChartValueAxisItemTitleMargin

A PHP class representing the margin setting of ChartValueAxisItemTitle.

Methods

bottom

The bottom margin of the title.

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemTitleMargin

Parameters

$value float

Example

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

left

The left margin of the title.

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemTitleMargin

Parameters

$value float

Example

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

The right margin of the title.

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemTitleMargin

Parameters

$value float

Example

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

top

The top margin of the title.

Returns

\Kendo\Dataviz\UI\ChartValueAxisItemTitleMargin

Parameters

$value float

Example

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