|
Oracle Fusion Middleware Java API Reference for Oracle ADF Data Visualization Components 11g Release 1 (11.1.1.1.0) E12063-02 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectoracle.dss.dataView.BaseComponentXML
oracle.dss.graph.BaseGraphComponent
oracle.dss.graph.BaseDataAxis
oracle.dss.graph.Y1Axis
public class Y1Axis
A numeric axis on a line, bar, area, scatter, bubble or stock market graph. This usually represents a range of quantities, such as dollars. On most graphs, it is the left-hand vertical axis. On horizontal graphs, this it is the top horizontal axis.
Field Summary |
---|
Fields inherited from class oracle.dss.graph.BaseDataAxis |
---|
a_ascending, a_axisLocation, a_axisMaxLabelVisible, a_axisMinLabelVisible, a_minAutoMajorTickStep, m_id, m_identObj2, m_labelIdentObj, m_majorGridIdentObj, m_minorGridIdentObj, m_viewFormat |
Fields inherited from class oracle.dss.dataView.BaseComponentXML |
---|
m_jsfHashMap |
Constructor Summary | |
---|---|
Y1Axis(CommonGraph graph)
|
Method Summary | |
---|---|
double |
getAutoMajorTickStep()
|
double |
getAxisMaxAutoValue()
Retrieves the high value of the automatic range for this axis. |
double |
getAxisMaxValue()
Retrieves the high value for the range of this axis, when the high value is not set automatically. |
double |
getAxisMinAutoValue()
Retrieves the low value for the automatic range of this axis. |
double |
getAxisMinValue()
Retrieves the low value for the range of this axis, when the low value is not set automatically. |
double |
getAxisZoomMaxValue()
Retrieves the high value for the range that the axis can zoom to, when the high value is not set automatically. |
double |
getAxisZoomMinValue()
Retrieves the low value for the range that the axis can zoom to, when the low value is not set automatically. |
protected java.lang.String |
getComponentName()
|
double |
getMajorTickStep()
Retrieves the number of tick marks that the graph hides between tick marks that are displayed on this data axis. |
double |
getMinorTickStep()
Retrieves the number of minor tick marks that the graph hides between tick marks that are displayed on this data axis. |
boolean |
isAxisAutoScaledFromZero()
Indicates whether the automatic range on this axis begins with zero. |
boolean |
isAxisMaxAutoScaled()
Indicates whether the graph automatically sets the high value for this axis. |
boolean |
isAxisMinAutoScaled()
Indicates whether the graph automatically sets the minimum value for this axis. |
boolean |
isMajorTickStepAutomatic()
This method is not really required to be overridden we are waiting for the Perspective enhancement. |
void |
setAxisAutoScaledFromZero(boolean yesNo)
Specifies whether the automatic range on this axis begins with zero. |
void |
setAxisMaxAutoScaled(boolean yesNo)
Specifies whether the graph automatically sets the high value for this axis. |
void |
setAxisMaxValue(double value)
Specifies the high value for the range of this axis, when the high value is not set automatically. |
void |
setAxisMinAutoScaled(boolean yesNo)
Specifies whether the graph automatically sets the the minimum value for this axis. |
void |
setAxisMinValue(double value)
Specifies the low value for the range of this axis, when the low value is not set automatically. |
void |
setAxisZoomMaxValue(double value)
Specifies the high value for the range that the axis can zoom to, when the high value is not set automatically. |
void |
setAxisZoomMinValue(double value)
Specifies the low value for the range that the axis can zoom to, when the low value is not set automatically. |
void |
setMajorTickStep(double value)
Specifies the number of tick marks that the graph hides between tick marks that are displayed on this data axis. |
void |
setMajorTickStepAutomatic(boolean yesNo)
This method is not really required to be overridden we are waiting for the Perspective enhancement. |
void |
setMinorTickStep(double value)
Specifies the number of minor tick marks that the graph hides between tick marks that are displayed on this data axis. |
void |
setVisible(boolean visible)
Specifies whether this axis is visible. |
Methods inherited from class oracle.dss.dataView.BaseComponentXML |
---|
getStyleXML, getXML, setNonstyleXML, setXML, setXML, setXML, setXML |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Y1Axis(CommonGraph graph)
graph
- The Graph
that this object belongs to.Method Detail |
---|
public boolean isAxisAutoScaledFromZero()
isAxisAutoScaledFromZero
in class BaseDataAxis
true
if it begins with zero, false
if it begins with the lowest data value on the axis.public void setAxisAutoScaledFromZero(boolean yesNo)
setAxisAutoScaledFromZero
in class BaseDataAxis
yesNo
- true
if it begins with zero, false
if it begins with the lowest data value on the axis.public boolean isAxisMaxAutoScaled()
false
, the graph uses the value that is set in the setAxisMaxValue
method.
isAxisMaxAutoScaled
in class BaseDataAxis
true
if the high value is automatically set, false
if the graph uses the value that is set in the setAxisMaxValue
method.BaseDataAxis.setAxisMaxValue(double)
public void setAxisMaxAutoScaled(boolean yesNo)
false
, the graph uses the value that is set in the setAxisMaxValue
method.
setAxisMaxAutoScaled
in class BaseDataAxis
yesNo
- true
to make the graph set the high value automatically, false
to make the graph use the value that is set in the setAxisMaxValue
method.BaseDataAxis.setAxisMaxValue(double)
public boolean isAxisMinAutoScaled()
false
, the graph uses the value that is set in the setAxisMinValue
method.
isAxisMinAutoScaled
in class BaseDataAxis
true
if the minimum value is set automatically, false
if the graph uses the value that is set in the setAxisMinValue
method.BaseDataAxis.setAxisMinValue(double)
public void setAxisMinAutoScaled(boolean yesNo)
false
, the graph uses the value that is set in the setAxisMinValue
method.
setAxisMinAutoScaled
in class BaseDataAxis
yesNo
- true
to make the graph set the minimum value
automatically, false
to make the graph use the value that
is set in the setAxisMinValue
method.BaseDataAxis.setAxisMinValue(double)
public double getAxisMaxAutoValue()
getAxisMaxAutoValue
in class BaseDataAxis
public double getAxisMaxValue()
setAxisMaxAutoScaled
method to false
.
getAxisMaxValue
in class BaseDataAxis
BaseDataAxis.setAxisMaxAutoScaled(boolean)
public void setAxisMaxValue(double value)
setAxisMaxAutoScaled
method to false
.
setAxisMaxValue
in class BaseDataAxis
value
- The high value for the range of this axis, when the high value is not set automatically.BaseDataAxis.setAxisMaxAutoScaled(boolean)
public double getAxisMinAutoValue()
getAxisMinAutoValue
in class BaseDataAxis
public double getAxisMinValue()
setAxisMinAutoScaled
method to false
.
getAxisMinValue
in class BaseDataAxis
BaseDataAxis.setAxisMinAutoScaled(boolean)
public void setAxisMinValue(double value)
setAxisMinAutoScaled
method to false
.
setAxisMinValue
in class BaseDataAxis
value
- The low value for the range of this axis, when the low value is not set automatically.BaseDataAxis.setAxisMinAutoScaled(boolean)
public double getAxisZoomMaxValue()
setAxisMaxAutoScaled
method to false
.
getAxisZoomMaxValue
in class BaseDataAxis
public void setAxisZoomMaxValue(double value)
setAxisMaxAutoScaled
method to false
.
setAxisZoomMaxValue
in class BaseDataAxis
value
- The high value for the range of this zoom axis, when the high
value is not set automatically.public double getAxisZoomMinValue()
setAxisMinAutoScaled
method to false
.
getAxisZoomMinValue
in class BaseDataAxis
public void setAxisZoomMinValue(double value)
setAxisMinAutoScaled
method to false
.
setAxisZoomMinValue
in class BaseDataAxis
value
- The low value for the range of this zoom axis, when the low
value is not set automatically.public double getMajorTickStep()
MajorTickStep
to 10, then the
tick marks appear at 0, 10, 20, 30, and so on.
(This assumes that AxisAutoScaledFromZero
and
AxisMinAutoScaled
are both set to true
.)
To make the graph use the value that this method returns, set the
setMajorTickStepAutomatic
method to false
.
getMajorTickStep
in class BaseDataAxis
setMajorTickStepAutomatic(boolean)
public double getMinorTickStep()
MinorTickStep
to 10, then the
tick marks appear at 0, 10, 20, 30, and so on.
(This assumes that AxisAutoScaledFromZero
and
AxisMinAutoScaled
are both set to true
.)
To make the graph use the value that this method returns, set the
setMinorTickStepAutomatic
method to false
.
getMinorTickStep
in class BaseDataAxis
#setMinorTickStepAutomatic
public double getAutoMajorTickStep()
getAutoMajorTickStep
in class BaseDataAxis
setMajorTickStepAutomatic(boolean)
public void setMajorTickStep(double value)
MajorTickStep
to 10, then the
tick marks appear at 0, 10, 20, 30, and so on.
(This assumes that AxisAutoScaledFromZero
and
AxisMinAutoScaled
are both set to true
.)
To make the graph use the value that is set in this method, set the
setMajorTickStepAutomatic
method to false
.
setMajorTickStep
in class BaseDataAxis
value
- The interval (or step) at which to display tick marks
on this data axis.setMajorTickStepAutomatic(boolean)
public void setMinorTickStep(double value)
MinorTickStep
to 10, then the
tick marks appear at 0, 10, 20, 30, and so on.
(This assumes that AxisAutoScaledFromZero
and
AxisMinAutoScaled
are both set to true
.)
To make the graph use the value that is set in this method, set the
setMinorTickStepAutomatic
method to false
.
setMinorTickStep
in class BaseDataAxis
value
- The interval (or step) at which to display tick marks
on this data axis.#setMinorTickStepAutomatic
public boolean isMajorTickStepAutomatic()
isMajorTickStepAutomatic
in class BaseDataAxis
true
if the number is calculated automatically, false
if it is set in the setMajorTickStep
method.BaseDataAxis.setMajorTickStep(double)
public void setMajorTickStepAutomatic(boolean yesNo)
setMajorTickStepAutomatic
in class BaseDataAxis
yesNo
- true
to make the graph calculate it automatically, false
to make the graph use the value that is set in the setMajorTickStep
method.BaseDataAxis.setMajorTickStep(double)
public void setVisible(boolean visible)
setVisible
in interface Visible
setVisible
in class BaseDataAxis
visible
- true
to make it visible, false
to make it invisible.protected java.lang.String getComponentName()
getComponentName
in class BaseComponentXML
|
Oracle Fusion Middleware Java API Reference for Oracle ADF Data Visualization Components 11g Release 1 (11.1.1.1.0) E12063-02 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |