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