\Kendo\Dataviz\UI\LinearGaugeScaleLine
A PHP class representing the line setting of LinearGaugeScale.
Methods
color
The color of the lines. Any valid CSS color string will work here, including hex and rgb.
Returns
\Kendo\Dataviz\UI\LinearGaugeScaleLine
Parameters
$value string
Example
<?php
$line = new \Kendo\Dataviz\UI\LinearGaugeScaleLine();
$line->color('value');
?>
dashType
The dash type of the line.
Returns
\Kendo\Dataviz\UI\LinearGaugeScaleLine
Parameters
$value string
Example
<?php
$line = new \Kendo\Dataviz\UI\LinearGaugeScaleLine();
$line->dashType('value');
?>
visible
The visibility of the lines.
Returns
\Kendo\Dataviz\UI\LinearGaugeScaleLine
Parameters
$value boolean
Example
<?php
$line = new \Kendo\Dataviz\UI\LinearGaugeScaleLine();
$line->visible(true);
?>
width
The width of the line..
Returns
\Kendo\Dataviz\UI\LinearGaugeScaleLine
Parameters
$value float
Example
<?php
$line = new \Kendo\Dataviz\UI\LinearGaugeScaleLine();
$line->width(1);
?>