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