getPlaceVertO1LabelsTitle()

When the automatic graph layout manager is enabled with setPlace(true), this method returns the object ID of a rectangle that is the virtual coordinate location and size of both the O1-Axis Labels and Titles. This method is used for vertical graph types.

Note: The important coordinates of this rectangle identifier are Y-location and height. The setPlaceRect() method is used with this object.

Syntax:

IdentObj getPlaceVertO1LabelsTitle();

Example:

restoreDefaults();
setGroupLabel(
     getGroup(0), "This is a very long group label0");
setGroupLabel(
     getGroup(1), "This is a very long group label1");
setGroupLabel(
     getGroup(2), "This is a very long group label2");
setGroupLabel(getGroup(3), "This is a very longerwordhere group 
labelerword that is named label3");
setGroupLabel(
     getGroup(4), "This is a very long group label4");
setDisplay(getY1Title(),true);
setDisplay(getO1Title(),true);
setTextString(getY1Title(),"Y1");
setTextString(getO1Title(),"O1");
setPlaceSkip(getO1Label(), 0);
setFontSizeAbsolute(getO1Label(), true);
setFontSize(getO1Label(), 10);
setPlaceMinFontSize(getO1Label(), 10);
setPlaceRect(getPlaceVertO1LabelsTitle(),
     new Rectangle(-14000, -15500, 29000, 24000));
setPlaceRotate(getO1Label(), 1);
setTextJustVert(getO1Label(),0);
setDataRange(0,0,1,4);
setPlace(true);
setDepthRadius(0);

bar graph

See getPlaceHorzO1LabelsTitle().


WebFOCUS