"valueAxisSubSegmentCount"

Defines how many sub segments are drawn on the Y axis.

Synopsis

shape.valueAxisSubSegmentCount(unsigned segments);

Parameter

Parameter Description
segments Number of sub segments (grid lines) which are drawn within each segment on the Y axis. The default value is 1. A value less than 1 must not be defined.

Description

Defines how many sub segments are drawn within each segment on the Y axis. In addition to each segment, grid lines for each sub segment are drawn.

Example

This example displays 4 segments with labels. Each segment is separated by a further grid line into two sub segments.

main()
{
  BarChart3D_ewo1.valueAxisSubSegmentCount(4);
  BarChart3D_ewo1.valueAxisSubSegmentCount(2);
}

Assignment

BarChart3D-EWO