\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItem
A PHP class representing the dataItem setting of StockChartNavigatorCategoryAxisNotesData.
Methods
icon
The icon of the note.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItem
Parameters
$value \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItemIcon|array
Example - using \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItemIcon
<?php
$dataItem = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItem();
$icon = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItemIcon();
$background = 'value';
$icon->background($background);
$dataItem->icon($icon);
?>
Example - using array
<?php
$dataItem = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItem();
$background = 'value';
$dataItem->icon(array('background' => $background));
?>
label
The label of the note.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItem
Parameters
$value \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItemLabel|array
Example - using \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItemLabel
<?php
$dataItem = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItem();
$label = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItemLabel();
$background = 'value';
$label->background($background);
$dataItem->label($label);
?>
Example - using array
<?php
$dataItem = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItem();
$background = 'value';
$dataItem->label(array('background' => $background));
?>
line
The line of the note.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItem
Parameters
$value \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItemLine|array
Example - using \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItemLine
<?php
$dataItem = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItem();
$line = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItemLine();
$color = 'value';
$line->color($color);
$dataItem->line($line);
?>
Example - using array
<?php
$dataItem = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItem();
$color = 'value';
$dataItem->line(array('color' => $color));
?>
position
The position of the category axis note. "top" - The note is positioned on the top.; "bottom" - The note is positioned on the bottom.; "left" - The note is positioned on the left. or "right" - The note is positioned on the right..
Returns
\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItem
Parameters
$value string
Example
<?php
$dataItem = new \Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItem();
$dataItem->position('value');
?>
value
The value of the note.
Returns
\Kendo\Dataviz\UI\StockChartNavigatorCategoryAxisNotesDataItem