I did look at the instructions they provide and I guess I can't make sense of what they are saying or I am looking in the wrong spot.
This was all I was able to find when it came to nested labels.
Using Nested/Multi-Dimensional Labels
Nested/multi-dimensional labels are supported on the O1 axis with these properties and
methods:
setO1LabelCallback(); This method assigns a callback function to the nested labels
interface.
getO1LabelCallback(); This method determines if a callback function has been assigned
with setO1LabelCallback().
NestedLabels (true/false); This property enables/disables nested labels.
Use the following procedures to implement the nested labels interface:
WebFOCUS Graphics 113
2. Using WebFOCUS Graphics
1. Create your own version of the nested labels callback. It must implement all of the
abstract methods defined in TDGNestedLabel.Java. They are:
abstract int getNumLevels();
abstract int getNumLabelsOnLevel(int nLevel);
abstract Vector getAllLabels(int nLevel);
abstract String getLabel(int nGroup, int nLevel);
abstract int getLabelGrouping(int nGroup, int nLevel);
2. Register the callback with the setO1LabelCallback() method. For example:
m_chart.setO1LabelCallback (TDGNestedLabel cb);
3. Enable the NestedLabel property. For example:
m_chart.setNestedLabels (true);
WebFOCUS 8.09
Windows, All Outputs