\Kendo\Dataviz\UI\ChartXAxisItemNotesDataItemLine
A PHP class representing the line setting of ChartXAxisItemNotesDataItem.
Methods
color
The line color of the note.
Returns
\Kendo\Dataviz\UI\ChartXAxisItemNotesDataItemLine
Parameters
$value string
Example
<?php
$line = new \Kendo\Dataviz\UI\ChartXAxisItemNotesDataItemLine();
$line->color('value');
?>
length
The length of the connecting lines in pixels.
Returns
\Kendo\Dataviz\UI\ChartXAxisItemNotesDataItemLine
Parameters
$value float
Example
<?php
$line = new \Kendo\Dataviz\UI\ChartXAxisItemNotesDataItemLine();
$line->length(1);
?>
width
The line width of the note.
Returns
\Kendo\Dataviz\UI\ChartXAxisItemNotesDataItemLine
Parameters
$value float
Example
<?php
$line = new \Kendo\Dataviz\UI\ChartXAxisItemNotesDataItemLine();
$line->width(1);
?>