"setSeriesRow"
Sets or replaces the values for one specific row of the given series.
Synopsis
shape.setSeriesRow(int series, int row, dyn_float values);
Parameter
| Parameter | Description |
|---|---|
| series |
Series index Note You have to specify an existing series. If the defined series number does not exist, the row values are discarded. |
| row | Row index (beginning with 0) |
| values | Values that shall be set |
Description
Sets or replaces the values for one specific row of the given series.
Example
main()
{
BarChart3D_ewo1.setSeriesRow(0, 2, makeDynFloat(2.1, 16.3, 18));
}
Assignment
BarChart3D-EWO
