"setSeriesBarValue"

Allows to change the value of a specific bar.

Synopsis

shape.setSeriesBarValue(int series, int row, int column, float value);

Parameter

Parameter Description
series Series index
row Row index (beginning with 0)
column Column index (beginning with 0)
value Value which shall be set

Description

Allows to change the value of a specific bar. The bar is defined by series, row and column index.

Example

main()
{
  BarChart3D_ewo1.setSeriesBarValue(1, 1, 3, 25.7);
}

Assignment

BarChart3D-EWO