\Kendo\Dataviz\UI\CircularGaugeScaleMajorTicks
A PHP class representing the majorTicks setting of CircularGaugeScale.
Methods
color
The color of the major ticks.
Returns
\Kendo\Dataviz\UI\CircularGaugeScaleMajorTicks
Parameters
$value string
Example
<?php
$majorTicks = new \Kendo\Dataviz\UI\CircularGaugeScaleMajorTicks();
$majorTicks->color('value');
?>
size
The major 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\CircularGaugeScaleMajorTicks
Parameters
$value float
Example
<?php
$majorTicks = new \Kendo\Dataviz\UI\CircularGaugeScaleMajorTicks();
$majorTicks->size(1);
?>
visible
The visibility of the major ticks.
Returns
\Kendo\Dataviz\UI\CircularGaugeScaleMajorTicks
Parameters
$value boolean
Example
<?php
$majorTicks = new \Kendo\Dataviz\UI\CircularGaugeScaleMajorTicks();
$majorTicks->visible(true);
?>
width
The width of the major ticks.
Returns
\Kendo\Dataviz\UI\CircularGaugeScaleMajorTicks
Parameters
$value float
Example
<?php
$majorTicks = new \Kendo\Dataviz\UI\CircularGaugeScaleMajorTicks();
$majorTicks->width(1);
?>