\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorTicks

A PHP class representing the minorTicks setting of StockChartNavigatorCategoryAxis.

Methods

color

The color of the category axis minor ticks lines. Accepts a valid CSS color string, including hex and rgb.

Returns

\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorTicks

Parameters

$value string

Example

<?php
$minorTicks = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorTicks();
$minorTicks->color('value');
?>

size

The length of the tick line in pixels.

Returns

\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorTicks

Parameters

$value float

Example

<?php
$minorTicks = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorTicks();
$minorTicks->size(1);
?>

skip

The skip of the category axis minor ticks.

Returns

\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorTicks

Parameters

$value float

Example

<?php
$minorTicks = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorTicks();
$minorTicks->skip(1);
?>

step

The step of the category axis minor ticks.

Returns

\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorTicks

Parameters

$value float

Example

<?php
$minorTicks = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorTicks();
$minorTicks->step(1);
?>

visible

If set to true the chart will display the category axis minor ticks. By default the category axis minor ticks are visible.

Returns

\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorTicks

Parameters

$value boolean

Example

<?php
$minorTicks = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorTicks();
$minorTicks->visible(true);
?>

width

The width of the minor ticks in pixels.

Returns

\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisMinorTicks

Parameters

$value float

Example

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