\Kendo\Dataviz\UI\StockChartSeriesItemStack
A PHP class representing the stack setting of StockChartSeriesItem.
Methods
group
Indicates that the series should be stacked in a group with the specified name.
Returns
\Kendo\Dataviz\UI\StockChartSeriesItemStack
Parameters
$value string
Example
<?php
$stack = new \Kendo\Dataviz\UI\StockChartSeriesItemStack();
$stack->group('value');
?>
type
The type of stack to plot. The following types are supported: "normal" - the value of the stack is the sum of all points in the category (or group) or "100%" - the value of the stack is always 100% (1.00). Points within the category (or group) are represented as percentages..
Returns
\Kendo\Dataviz\UI\StockChartSeriesItemStack
Parameters
$value string
Example
<?php
$stack = new \Kendo\Dataviz\UI\StockChartSeriesItemStack();
$stack->type('value');
?>