\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisPlotBand
A PHP class representing the plotBand setting of StockChartNavigatorCategoryAxisPlotBands.
Methods
color
The color of the plot band.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisPlotBand
Parameters
$value string
Example
<?php
$plotBand = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisPlotBand();
$plotBand->color('value');
?>
from
The start position of the plot band in axis units.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisPlotBand
Parameters
$value float
Example
<?php
$plotBand = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisPlotBand();
$plotBand->from(1);
?>
opacity
The opacity of the plot band.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisPlotBand
Parameters
$value float
Example
<?php
$plotBand = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisPlotBand();
$plotBand->opacity(1);
?>
to
The end position of the plot band in axis units.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisPlotBand
Parameters
$value float
Example
<?php
$plotBand = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisPlotBand();
$plotBand->to(1);
?>