Y1AxisLineDisplay

This property enables or disables display of the Y1 axis base line. Y1AxisSide determines the location where the Y1 axis base line is drawn.

Syntax:

setY1AxisLineDisplay(boolean);
boolean = getY1AxisLineDisplay();

where:

boolean

Can be one of the following:

true draws the Y1-axis base line. This value is the default.

false does not draw the Y1-axis base line.

Example:

setFillColor(getY1AxisLine(), newColor (0,0,0));
setDepthAngle(0);
   setY1AxisLineDisplay(true);
setLineWidth(getY1AxisLine(),5);
setDepthRadius(0);
setLegendDisplay(false);

bar graph

setY1AxisLineDisplay(false);

bar graph

Note: In the default configuration for this graph type, the Y1AxisLine is the same width and location as the bottom of the graph frame. When this line size is used, the setting of this property does not change the appearance of the graph. To make a thicker and more visible axis line, use the getY1AxisLine() method to get the object ID of the line and setLineWidth() method to increase the width of the line.

See Y1AxisSide, getAxisSide(), setLineWidth(), setAxisSide().


WebFOCUS