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