java.lang.Object
omix.lang.chart.util.ChartStyleElement
omix.lang.chart.util.Axis
omix.lang.chart.util.ValueAxis
- All Implemented Interfaces:
Serializable
public class ValueAxis extends Axis
- Since:
- Omix 1.8.6
- Author:
- Dr. Peter Droste
- See Also:
- Serialized Form
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ValueAxis.AxisType
Nested classes/interfaces inherited from class omix.lang.chart.util.Axis
Axis.LabelLocation, Axis.Position
-
Constructor Summary
Constructors Constructor Description ValueAxis()
-
Method Summary
Modifier and Type Method Description ValueAxis
clone()
double
getAutoRangeMinimumSize()
ValueAxis.AxisType
getAxisType()
double
getDefaultAutoLowerRange()
double
getDefaultAutoUpperRange()
double
getFixedAutoRange()
double
getLowerMargin()
double
getLowerRange()
int
getMinorTickCount()
DecimalFormat
getNumberFormat()
double
getUpperMargin()
double
getUpperRange()
boolean
isAutoRange()
boolean
isAutoTickUnitSelection()
boolean
isInverted()
boolean
isNegativeArrowVisible()
boolean
isPositiveArrowVisible()
boolean
isVerticalTickLabels()
void
set(Axis axis)
void
setAutoRange(boolean autoRange)
void
setAutoRangeMinimumSize(double autoRangeMinimumSize)
void
setAutoTickUnitSelection(boolean autoTickUnitSelection)
void
setAxisType(ValueAxis.AxisType axisType)
void
setDefaultAutoRange(double defaultAutoLowerRange, double defaultAutoUpperRange)
void
setFixedAutoRange(double fixedAutoRange)
void
setInverted(boolean inverted)
void
setLowerMargin(double lowerMargin)
void
setMinorTickCount(int minorTickCount)
void
setNegativeArrowVisible(boolean negativeArrowVisible)
void
setNumberFormat(DecimalFormat numberFormat)
void
setPositiveArrowVisible(boolean positiveArrowVisible)
void
setRange(double lowerRange, double upperRange)
void
setUpperMargin(double upperMargin)
void
setVerticalTickLabels(boolean verticalTickLabels)
Methods inherited from class omix.lang.chart.util.Axis
getAxisLineColor, getAxisLineStyle, getAxisLineWidth, getFixedDimension, getLabel, getLabelAngle, getLabelColor, getLabelFont, getLabelLocation, getMinorTickMarkInsideLength, getMinorTickMarkOutsideLength, getPosition, getTickLabelColor, getTickLabelFont, getTickMarkColor, getTickMarkInsideLength, getTickMarkOutsideLength, getTickMarkWidth, isMinorTickMarksVisible, isTickLabelsVisible, isVisible, setAxisLineColor, setAxisLineStyle, setAxisLineWidth, setFixedDimension, setLabel, setLabelAngle, setLabelColor, setLabelFont, setLabelLocation, setMinorTickMarkInsideLength, setMinorTickMarkOutsideLength, setMinorTickMarksVisible, setPosition, setTickLabelColor, setTickLabelFont, setTickLabelsVisible, setTickMarkColor, setTickMarkInsideLength, setTickMarkOutsideLength, setTickMarkWidth, setVisible
Methods inherited from class omix.lang.chart.util.ChartStyleElement
addPropertyChangeListener, propertyChange, removePropertyChangeListener
-
Constructor Details
-
ValueAxis
public ValueAxis()
-
-
Method Details
-
set
-
clone
-
getLowerMargin
public double getLowerMargin() -
setLowerMargin
public void setLowerMargin(double lowerMargin) -
getUpperMargin
public double getUpperMargin() -
setUpperMargin
public void setUpperMargin(double upperMargin) -
isPositiveArrowVisible
public boolean isPositiveArrowVisible() -
setPositiveArrowVisible
public void setPositiveArrowVisible(boolean positiveArrowVisible) -
isNegativeArrowVisible
public boolean isNegativeArrowVisible() -
setNegativeArrowVisible
public void setNegativeArrowVisible(boolean negativeArrowVisible) -
isInverted
public boolean isInverted() -
setInverted
public void setInverted(boolean inverted) -
getLowerRange
public double getLowerRange() -
setRange
public void setRange(double lowerRange, double upperRange) -
getUpperRange
public double getUpperRange() -
isAutoRange
public boolean isAutoRange() -
setAutoRange
public void setAutoRange(boolean autoRange) -
getAutoRangeMinimumSize
public double getAutoRangeMinimumSize() -
setAutoRangeMinimumSize
public void setAutoRangeMinimumSize(double autoRangeMinimumSize) -
getDefaultAutoUpperRange
public double getDefaultAutoUpperRange() -
setDefaultAutoRange
public void setDefaultAutoRange(double defaultAutoLowerRange, double defaultAutoUpperRange) -
getDefaultAutoLowerRange
public double getDefaultAutoLowerRange() -
getFixedAutoRange
public double getFixedAutoRange() -
setFixedAutoRange
public void setFixedAutoRange(double fixedAutoRange) -
isAutoTickUnitSelection
public boolean isAutoTickUnitSelection() -
setAutoTickUnitSelection
public void setAutoTickUnitSelection(boolean autoTickUnitSelection) -
getMinorTickCount
public int getMinorTickCount() -
setMinorTickCount
public void setMinorTickCount(int minorTickCount) -
isVerticalTickLabels
public boolean isVerticalTickLabels() -
setVerticalTickLabels
public void setVerticalTickLabels(boolean verticalTickLabels) -
getAxisType
-
setAxisType
-
getNumberFormat
- Returns:
- the numberFormat
-
setNumberFormat
- Parameters:
numberFormat
- the numberFormat to set
-