\Kendo\Dataviz\UI\ArcGaugeScaleMinorTicks
A PHP class representing the minorTicks setting of ArcGaugeScale.
Methods
color
The color of the minor ticks. Any valid CSS color string will work here, including hex and rgb.
Returns
\Kendo\Dataviz\UI\ArcGaugeScaleMinorTicks
Parameters
$value string
Example
<?php
$minorTicks = new \Kendo\Dataviz\UI\ArcGaugeScaleMinorTicks();
$minorTicks->color('value');
?>
size
The minor tick size. This is the length of the line in pixels that is drawn to indicate the tick on the scale.
Returns
\Kendo\Dataviz\UI\ArcGaugeScaleMinorTicks
Parameters
$value float
Example
<?php
$minorTicks = new \Kendo\Dataviz\UI\ArcGaugeScaleMinorTicks();
$minorTicks->size(1);
?>
visible
The visibility of the minor ticks.
Returns
\Kendo\Dataviz\UI\ArcGaugeScaleMinorTicks
Parameters
$value boolean
Example
<?php
$minorTicks = new \Kendo\Dataviz\UI\ArcGaugeScaleMinorTicks();
$minorTicks->visible(true);
?>
width
The width of the minor ticks.
Returns
\Kendo\Dataviz\UI\ArcGaugeScaleMinorTicks
Parameters
$value float
Example
<?php
$minorTicks = new \Kendo\Dataviz\UI\ArcGaugeScaleMinorTicks();
$minorTicks->width(1);
?>