"valueLabelFormat"

Defines the format which is used for the labels on the Y axis.

Synopsis

shape.valueLabelFormat(string format);

Parameter

Parameter Description
Format

Defines the label format, e.g. %s. Supported specifiers are:

d, i, o, x, X, f, F, e, E, g, G, c

See sprintf() for additional details.

Description

Defines the format which is used for the labels on the Y axis.

Example

main()
{
  BarChart3D_ewo1.valueLabelFormat("%.1f");
}

Assignment

BarChart3D-EWO