\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorGridLines
A PHP class representing the minorGridLines setting of StockChartNavigatorCategoryAxis.
Methods
color
The color of the minor grid lines. Accepts a valid CSS color string, including hex and rgb.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorGridLines
Parameters
$value string
Example
<?php
$minorGridLines = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorGridLines();
$minorGridLines->color('value');
?>
dashType
The dash type of the minor grid lines.The following dash types are supported: "dash" - a line consisting of dashes; "dashDot" - a line consisting of a repeating pattern of dash-dot; "dot" - a line consisting of dots; "longDash" - a line consisting of a repeating pattern of long-dash; "longDashDot" - a line consisting of a repeating pattern of long-dash-dot; "longDashDotDot" - a line consisting of a repeating pattern of long-dash-dot-dot or "solid" - a solid line.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorGridLines
Parameters
$value string
Example
<?php
$minorGridLines = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorGridLines();
$minorGridLines->dashType('value');
?>
skip
The skip of the category axis minor grid lines.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorGridLines
Parameters
$value float
Example
<?php
$minorGridLines = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorGridLines();
$minorGridLines->skip(1);
?>
step
The step of the category axis minor grid lines.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorGridLines
Parameters
$value float
Example
<?php
$minorGridLines = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorGridLines();
$minorGridLines->step(1);
?>
visible
If set to true the chart will display the minor grid lines. By default the minor grid lines are visible.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorGridLines
Parameters
$value boolean
Example
<?php
$minorGridLines = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorGridLines();
$minorGridLines->visible(true);
?>
width
The width of the category axis minor grid lines in pixels.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorGridLines
Parameters
$value float
Example
<?php
$minorGridLines = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorGridLines();
$minorGridLines->width(1);
?>