| java.lang.Object org.jfree.chart.axis.Axis org.jfree.chart.axis.ValueAxis org.jfree.chart.axis.PeriodAxis
Method Summary | |
protected void | autoAdjustRange() Rescales the axis to ensure that all data is visible. | public Object | clone() Returns a clone of the axis. | public void | configure() Configures the axis to work with the current plot. | public AxisState | draw(Graphics2D g2, double cursor, Rectangle2D plotArea, Rectangle2D dataArea, RectangleEdge edge, PlotRenderingInfo plotState) Draws the axis on a Java 2D graphics device (such as the screen or a
printer).
Parameters: g2 - the graphics device (null not permitted). Parameters: cursor - the cursor location (determines where to draw the axis). Parameters: plotArea - the area within which the axes and plot should be drawn. Parameters: dataArea - the area within which the data should be drawn. Parameters: edge - the axis location (null not permitted). Parameters: plotState - collects information about the plot (null permitted). | protected AxisState | drawTickLabels(int band, Graphics2D g2, AxisState state, Rectangle2D dataArea, RectangleEdge edge) Draws the tick labels for one "band" of time periods.
Parameters: band - the band index (zero-based). Parameters: g2 - the graphics device. Parameters: state - the axis state. Parameters: dataArea - the data area. Parameters: edge - the edge where the axis is located. | protected void | drawTickMarks(Graphics2D g2, AxisState state, Rectangle2D dataArea, RectangleEdge edge) Draws the tick marks for the axis. | protected void | drawTickMarksHorizontal(Graphics2D g2, AxisState state, Rectangle2D dataArea, RectangleEdge edge) Draws the major and minor tick marks for an axis that lies at the top or
bottom of the plot. | protected void | drawTickMarksVertical(Graphics2D g2, AxisState state, Rectangle2D dataArea, RectangleEdge edge) Draws the tick marks for a vertical axis. | public boolean | equals(Object obj) Tests the axis for equality with an arbitrary object.
Parameters: obj - the object (null permitted). | public Class | getAutoRangeTimePeriodClass() Returns the class used to create the first and last time periods for
the axis range when the auto-range flag is set to true . | public RegularTimePeriod | getFirst() Returns the first time period in the axis range. | public PeriodAxisLabelInfo[] | getLabelInfo() Returns an array of label info records. | public RegularTimePeriod | getLast() Returns the last time period in the axis range. | public Class | getMajorTickTimePeriodClass() Returns the class that controls the spacing of the major tick marks. | public float | getMinorTickMarkInsideLength() Returns the inside length for the minor tick marks. | public float | getMinorTickMarkOutsideLength() Returns the outside length for the minor tick marks. | public Paint | getMinorTickMarkPaint() Returns the paint used to display minor tick marks, if they are
visible. | public Stroke | getMinorTickMarkStroke() Returns the stroke used to display minor tick marks, if they are
visible. | public Class | getMinorTickTimePeriodClass() Returns the class that controls the spacing of the minor tick marks. | public Range | getRange() Returns the range for the axis. | public TimeZone | getTimeZone() Returns the time zone used to convert the periods defining the axis
range into absolute milliseconds. | public int | hashCode() Returns a hash code for this object. | public boolean | isMinorTickMarksVisible() Returns the flag that controls whether or not minor tick marks
are displayed for the axis. | public double | java2DToValue(double java2DValue, Rectangle2D area, RectangleEdge edge) Converts a coordinate in Java2D space to the corresponding data value,
assuming that the axis runs along one edge of the specified dataArea.
Parameters: java2DValue - the coordinate in Java2D space. Parameters: area - the area in which the data is plotted. Parameters: edge - the edge along which the axis lies. | public List | refreshTicks(Graphics2D g2, AxisState state, Rectangle2D dataArea, RectangleEdge edge) Calculates the positions of the ticks for the axis, storing the results
in the tick list (ready for drawing).
Parameters: g2 - the graphics device. Parameters: state - the axis state. Parameters: dataArea - the area inside the axes. Parameters: edge - the edge on which the axis is located. | public AxisSpace | reserveSpace(Graphics2D g2, Plot plot, Rectangle2D plotArea, RectangleEdge edge, AxisSpace space) Estimates the space (height or width) required to draw the axis.
Parameters: g2 - the graphics device. Parameters: plot - the plot that the axis belongs to. Parameters: plotArea - the area within which the plot (including axes) should be drawn. Parameters: edge - the axis location. Parameters: space - space already reserved. | public void | setAutoRangeTimePeriodClass(Class c) Sets the class used to create the first and last time periods for the
axis range when the auto-range flag is set to true and
sends an
AxisChangeEvent to all registered listeners. | public void | setFirst(RegularTimePeriod first) Sets the first time period in the axis range and sends an
AxisChangeEvent to all registered listeners. | public void | setLabelInfo(PeriodAxisLabelInfo[] info) Sets the array of label info records. | public void | setLast(RegularTimePeriod last) Sets the last time period in the axis range and sends an
AxisChangeEvent to all registered listeners. | public void | setMajorTickTimePeriodClass(Class c) Sets the class that controls the spacing of the major tick marks, and
sends an
AxisChangeEvent to all registered listeners. | public void | setMinorTickMarkInsideLength(float length) Sets the inside length of the minor tick marks and sends an
AxisChangeEvent to all registered listeners. | public void | setMinorTickMarkOutsideLength(float length) Sets the outside length of the minor tick marks and sends an
AxisChangeEvent to all registered listeners. | public void | setMinorTickMarkPaint(Paint paint) Sets the paint used to display minor tick marks, if they are
visible, and sends a
AxisChangeEvent to all registered
listeners. | public void | setMinorTickMarkStroke(Stroke stroke) Sets the stroke used to display minor tick marks, if they are
visible, and sends a
AxisChangeEvent to all registered
listeners. | public void | setMinorTickMarksVisible(boolean visible) Sets the flag that controls whether or not minor tick marks
are displayed for the axis, and sends a
AxisChangeEvent to all registered listeners. | public void | setMinorTickTimePeriodClass(Class c) Sets the class that controls the spacing of the minor tick marks, and
sends an
AxisChangeEvent to all registered listeners. | public void | setRange(Range range, boolean turnOffAutoRange, boolean notify) Sets the range for the axis, if requested, sends an
AxisChangeEvent to all registered listeners. | public void | setTimeZone(TimeZone zone) Sets the time zone that is used to convert the time periods into
absolute milliseconds. | public double | valueToJava2D(double value, Rectangle2D area, RectangleEdge edge) Converts a data value to a coordinate in Java2D space, assuming that the
axis runs along one edge of the specified dataArea.
Note that it is possible for the coordinate to fall outside the area.
Parameters: value - the data value. Parameters: area - the area for plotting the data. Parameters: edge - the edge along which the axis lies. |
PeriodAxis | public PeriodAxis(String label)(Code) | | Creates a new axis.
Parameters: label - the axis label. |
PeriodAxis | public PeriodAxis(String label, RegularTimePeriod first, RegularTimePeriod last)(Code) | | Creates a new axis.
Parameters: label - the axis label (null permitted). Parameters: first - the first time period in the axis range (null not permitted). Parameters: last - the last time period in the axis range (null not permitted). |
PeriodAxis | public PeriodAxis(String label, RegularTimePeriod first, RegularTimePeriod last, TimeZone timeZone)(Code) | | Creates a new axis.
Parameters: label - the axis label (null permitted). Parameters: first - the first time period in the axis range (null not permitted). Parameters: last - the last time period in the axis range (null not permitted). Parameters: timeZone - the time zone (null not permitted). |
autoAdjustRange | protected void autoAdjustRange()(Code) | | Rescales the axis to ensure that all data is visible.
|
configure | public void configure()(Code) | | Configures the axis to work with the current plot. Override this method
to perform any special processing (such as auto-rescaling).
|
draw | public AxisState draw(Graphics2D g2, double cursor, Rectangle2D plotArea, Rectangle2D dataArea, RectangleEdge edge, PlotRenderingInfo plotState)(Code) | | Draws the axis on a Java 2D graphics device (such as the screen or a
printer).
Parameters: g2 - the graphics device (null not permitted). Parameters: cursor - the cursor location (determines where to draw the axis). Parameters: plotArea - the area within which the axes and plot should be drawn. Parameters: dataArea - the area within which the data should be drawn. Parameters: edge - the axis location (null not permitted). Parameters: plotState - collects information about the plot (null permitted). The axis state (never null ). |
drawTickLabels | protected AxisState drawTickLabels(int band, Graphics2D g2, AxisState state, Rectangle2D dataArea, RectangleEdge edge)(Code) | | Draws the tick labels for one "band" of time periods.
Parameters: band - the band index (zero-based). Parameters: g2 - the graphics device. Parameters: state - the axis state. Parameters: dataArea - the data area. Parameters: edge - the edge where the axis is located. The updated axis state. |
drawTickMarks | protected void drawTickMarks(Graphics2D g2, AxisState state, Rectangle2D dataArea, RectangleEdge edge)(Code) | | Draws the tick marks for the axis.
Parameters: g2 - the graphics device. Parameters: state - the axis state. Parameters: dataArea - the data area. Parameters: edge - the edge. |
drawTickMarksHorizontal | protected void drawTickMarksHorizontal(Graphics2D g2, AxisState state, Rectangle2D dataArea, RectangleEdge edge)(Code) | | Draws the major and minor tick marks for an axis that lies at the top or
bottom of the plot.
Parameters: g2 - the graphics device. Parameters: state - the axis state. Parameters: dataArea - the data area. Parameters: edge - the edge. |
drawTickMarksVertical | protected void drawTickMarksVertical(Graphics2D g2, AxisState state, Rectangle2D dataArea, RectangleEdge edge)(Code) | | Draws the tick marks for a vertical axis.
Parameters: g2 - the graphics device. Parameters: state - the axis state. Parameters: dataArea - the data area. Parameters: edge - the edge. |
equals | public boolean equals(Object obj)(Code) | | Tests the axis for equality with an arbitrary object.
Parameters: obj - the object (null permitted). A boolean. |
getAutoRangeTimePeriodClass | public Class getAutoRangeTimePeriodClass()(Code) | | Returns the class used to create the first and last time periods for
the axis range when the auto-range flag is set to true .
The class (never null ). |
getFirst | public RegularTimePeriod getFirst()(Code) | | Returns the first time period in the axis range.
The first time period (never null ). |
getLast | public RegularTimePeriod getLast()(Code) | | Returns the last time period in the axis range.
The last time period (never null ). |
getMajorTickTimePeriodClass | public Class getMajorTickTimePeriodClass()(Code) | | Returns the class that controls the spacing of the major tick marks.
The class (never null ). |
getMinorTickMarkInsideLength | public float getMinorTickMarkInsideLength()(Code) | | Returns the inside length for the minor tick marks.
The length. |
getMinorTickMarkOutsideLength | public float getMinorTickMarkOutsideLength()(Code) | | Returns the outside length for the minor tick marks.
The length. |
getMinorTickMarkPaint | public Paint getMinorTickMarkPaint()(Code) | | Returns the paint used to display minor tick marks, if they are
visible.
A paint (never null ). |
getMinorTickMarkStroke | public Stroke getMinorTickMarkStroke()(Code) | | Returns the stroke used to display minor tick marks, if they are
visible.
A stroke (never null ). |
getMinorTickTimePeriodClass | public Class getMinorTickTimePeriodClass()(Code) | | Returns the class that controls the spacing of the minor tick marks.
The class (never null ). |
getRange | public Range getRange()(Code) | | Returns the range for the axis.
The axis range (never null ). |
getTimeZone | public TimeZone getTimeZone()(Code) | | Returns the time zone used to convert the periods defining the axis
range into absolute milliseconds.
The time zone (never null ). |
hashCode | public int hashCode()(Code) | | Returns a hash code for this object.
A hash code. |
isMinorTickMarksVisible | public boolean isMinorTickMarksVisible()(Code) | | Returns the flag that controls whether or not minor tick marks
are displayed for the axis.
A boolean. |
java2DToValue | public double java2DToValue(double java2DValue, Rectangle2D area, RectangleEdge edge)(Code) | | Converts a coordinate in Java2D space to the corresponding data value,
assuming that the axis runs along one edge of the specified dataArea.
Parameters: java2DValue - the coordinate in Java2D space. Parameters: area - the area in which the data is plotted. Parameters: edge - the edge along which the axis lies. The data value. |
refreshTicks | public List refreshTicks(Graphics2D g2, AxisState state, Rectangle2D dataArea, RectangleEdge edge)(Code) | | Calculates the positions of the ticks for the axis, storing the results
in the tick list (ready for drawing).
Parameters: g2 - the graphics device. Parameters: state - the axis state. Parameters: dataArea - the area inside the axes. Parameters: edge - the edge on which the axis is located. The list of ticks. |
reserveSpace | public AxisSpace reserveSpace(Graphics2D g2, Plot plot, Rectangle2D plotArea, RectangleEdge edge, AxisSpace space)(Code) | | Estimates the space (height or width) required to draw the axis.
Parameters: g2 - the graphics device. Parameters: plot - the plot that the axis belongs to. Parameters: plotArea - the area within which the plot (including axes) should be drawn. Parameters: edge - the axis location. Parameters: space - space already reserved. The space required to draw the axis (including pre-reserved space). |
setAutoRangeTimePeriodClass | public void setAutoRangeTimePeriodClass(Class c)(Code) | | Sets the class used to create the first and last time periods for the
axis range when the auto-range flag is set to true and
sends an
AxisChangeEvent to all registered listeners.
Parameters: c - the class (null not permitted). |
setFirst | public void setFirst(RegularTimePeriod first)(Code) | | Sets the first time period in the axis range and sends an
AxisChangeEvent to all registered listeners.
Parameters: first - the time period (null not permitted). |
setLabelInfo | public void setLabelInfo(PeriodAxisLabelInfo[] info)(Code) | | Sets the array of label info records.
Parameters: info - the info. |
setLast | public void setLast(RegularTimePeriod last)(Code) | | Sets the last time period in the axis range and sends an
AxisChangeEvent to all registered listeners.
Parameters: last - the time period (null not permitted). |
setMajorTickTimePeriodClass | public void setMajorTickTimePeriodClass(Class c)(Code) | | Sets the class that controls the spacing of the major tick marks, and
sends an
AxisChangeEvent to all registered listeners.
Parameters: c - the class (a subclass of RegularTimePeriod is expected). |
setMinorTickMarkInsideLength | public void setMinorTickMarkInsideLength(float length)(Code) | | Sets the inside length of the minor tick marks and sends an
AxisChangeEvent to all registered listeners.
Parameters: length - the length. |
setMinorTickMarkOutsideLength | public void setMinorTickMarkOutsideLength(float length)(Code) | | Sets the outside length of the minor tick marks and sends an
AxisChangeEvent to all registered listeners.
Parameters: length - the length. |
setMinorTickMarkPaint | public void setMinorTickMarkPaint(Paint paint)(Code) | | Sets the paint used to display minor tick marks, if they are
visible, and sends a
AxisChangeEvent to all registered
listeners.
Parameters: paint - the paint (null not permitted). |
setMinorTickMarkStroke | public void setMinorTickMarkStroke(Stroke stroke)(Code) | | Sets the stroke used to display minor tick marks, if they are
visible, and sends a
AxisChangeEvent to all registered
listeners.
Parameters: stroke - the stroke (null not permitted). |
setMinorTickMarksVisible | public void setMinorTickMarksVisible(boolean visible)(Code) | | Sets the flag that controls whether or not minor tick marks
are displayed for the axis, and sends a
AxisChangeEvent to all registered listeners.
Parameters: visible - the flag. |
setMinorTickTimePeriodClass | public void setMinorTickTimePeriodClass(Class c)(Code) | | Sets the class that controls the spacing of the minor tick marks, and
sends an
AxisChangeEvent to all registered listeners.
Parameters: c - the class (a subclass of RegularTimePeriod is expected). |
setRange | public void setRange(Range range, boolean turnOffAutoRange, boolean notify)(Code) | | Sets the range for the axis, if requested, sends an
AxisChangeEvent to all registered listeners. As a side-effect,
the auto-range flag is set to false (optional).
Parameters: range - the range (null not permitted). Parameters: turnOffAutoRange - a flag that controls whether or not the auto range is turned off. Parameters: notify - a flag that controls whether or not listeners are notified. |
setTimeZone | public void setTimeZone(TimeZone zone)(Code) | | Sets the time zone that is used to convert the time periods into
absolute milliseconds.
Parameters: zone - the time zone (null not permitted). |
valueToJava2D | public double valueToJava2D(double value, Rectangle2D area, RectangleEdge edge)(Code) | | Converts a data value to a coordinate in Java2D space, assuming that the
axis runs along one edge of the specified dataArea.
Note that it is possible for the coordinate to fall outside the area.
Parameters: value - the data value. Parameters: area - the area for plotting the data. Parameters: edge - the edge along which the axis lies. The Java2D coordinate. |
Methods inherited from org.jfree.chart.axis.ValueAxis | abstract protected void autoAdjustRange()(Code)(Java Doc) protected float[] calculateAnchorPoint(ValueTick tick, double cursor, Rectangle2D dataArea, RectangleEdge edge)(Code)(Java Doc) public void centerRange(double value)(Code)(Java Doc) public Object clone() throws CloneNotSupportedException(Code)(Java Doc) protected void drawAxisLine(Graphics2D g2, double cursor, Rectangle2D dataArea, RectangleEdge edge)(Code)(Java Doc) protected AxisState drawTickMarksAndLabels(Graphics2D g2, double cursor, Rectangle2D plotArea, Rectangle2D dataArea, RectangleEdge edge)(Code)(Java Doc) public boolean equals(Object obj)(Code)(Java Doc) protected double findMaximumTickLabelHeight(List ticks, Graphics2D g2, Rectangle2D drawArea, boolean vertical)(Code)(Java Doc) protected double findMaximumTickLabelWidth(List ticks, Graphics2D g2, Rectangle2D drawArea, boolean vertical)(Code)(Java Doc) public double getAutoRangeMinimumSize()(Code)(Java Doc) protected int getAutoTickIndex()(Code)(Java Doc) public Range getDefaultAutoRange()(Code)(Java Doc) public Shape getDownArrow()(Code)(Java Doc) public double getFixedAutoRange()(Code)(Java Doc) public Shape getLeftArrow()(Code)(Java Doc) public double getLowerBound()(Code)(Java Doc) public double getLowerMargin()(Code)(Java Doc) public Range getRange()(Code)(Java Doc) public Shape getRightArrow()(Code)(Java Doc) public TickUnitSource getStandardTickUnits()(Code)(Java Doc) public Shape getUpArrow()(Code)(Java Doc) public double getUpperBound()(Code)(Java Doc) public double getUpperMargin()(Code)(Java Doc) public boolean isAutoRange()(Code)(Java Doc) public boolean isAutoTickUnitSelection()(Code)(Java Doc) public boolean isInverted()(Code)(Java Doc) public boolean isNegativeArrowVisible()(Code)(Java Doc) public boolean isPositiveArrowVisible()(Code)(Java Doc) public boolean isVerticalTickLabels()(Code)(Java Doc) abstract public double java2DToValue(double java2DValue, Rectangle2D area, RectangleEdge edge)(Code)(Java Doc) public double lengthToJava2D(double length, Rectangle2D area, RectangleEdge edge)(Code)(Java Doc) public AxisSpace reserveSpace(Graphics2D g2, Plot plot, Rectangle2D plotArea, RectangleEdge edge, AxisSpace space)(Code)(Java Doc) public void resizeRange(double percent)(Code)(Java Doc) public void resizeRange(double percent, double anchorValue)(Code)(Java Doc) public void setAutoRange(boolean auto)(Code)(Java Doc) protected void setAutoRange(boolean auto, boolean notify)(Code)(Java Doc) public void setAutoRangeMinimumSize(double size)(Code)(Java Doc) public void setAutoRangeMinimumSize(double size, boolean notify)(Code)(Java Doc) protected void setAutoTickIndex(int index)(Code)(Java Doc) public void setAutoTickUnitSelection(boolean flag)(Code)(Java Doc) public void setAutoTickUnitSelection(boolean flag, boolean notify)(Code)(Java Doc) public void setDefaultAutoRange(Range range)(Code)(Java Doc) public void setDownArrow(Shape arrow)(Code)(Java Doc) public void setFixedAutoRange(double length)(Code)(Java Doc) public void setInverted(boolean flag)(Code)(Java Doc) public void setLeftArrow(Shape arrow)(Code)(Java Doc) public void setLowerBound(double min)(Code)(Java Doc) public void setLowerMargin(double margin)(Code)(Java Doc) public void setNegativeArrowVisible(boolean visible)(Code)(Java Doc) public void setPositiveArrowVisible(boolean visible)(Code)(Java Doc) public void setRange(Range range)(Code)(Java Doc) public void setRange(Range range, boolean turnOffAutoRange, boolean notify)(Code)(Java Doc) public void setRange(double lower, double upper)(Code)(Java Doc) public void setRangeAboutValue(double value, double length)(Code)(Java Doc) public void setRangeWithMargins(Range range)(Code)(Java Doc) public void setRangeWithMargins(Range range, boolean turnOffAutoRange, boolean notify)(Code)(Java Doc) public void setRangeWithMargins(double lower, double upper)(Code)(Java Doc) public void setRightArrow(Shape arrow)(Code)(Java Doc) public void setStandardTickUnits(TickUnitSource source)(Code)(Java Doc) public void setUpArrow(Shape arrow)(Code)(Java Doc) public void setUpperBound(double max)(Code)(Java Doc) public void setUpperMargin(double margin)(Code)(Java Doc) public void setVerticalTickLabels(boolean flag)(Code)(Java Doc) abstract public double valueToJava2D(double value, Rectangle2D area, RectangleEdge edge)(Code)(Java Doc) public void zoomRange(double lowerPercent, double upperPercent)(Code)(Java Doc)
|
Methods inherited from org.jfree.chart.axis.Axis | public void addChangeListener(AxisChangeListener listener)(Code)(Java Doc) public Object clone() throws CloneNotSupportedException(Code)(Java Doc) abstract public void configure()(Code)(Java Doc) abstract public AxisState draw(Graphics2D g2, double cursor, Rectangle2D plotArea, Rectangle2D dataArea, RectangleEdge edge, PlotRenderingInfo plotState)(Code)(Java Doc) protected void drawAxisLine(Graphics2D g2, double cursor, Rectangle2D dataArea, RectangleEdge edge)(Code)(Java Doc) protected AxisState drawLabel(String label, Graphics2D g2, Rectangle2D plotArea, Rectangle2D dataArea, RectangleEdge edge, AxisState state)(Code)(Java Doc) public boolean equals(Object obj)(Code)(Java Doc) public Paint getAxisLinePaint()(Code)(Java Doc) public Stroke getAxisLineStroke()(Code)(Java Doc) public double getFixedDimension()(Code)(Java Doc) public String getLabel()(Code)(Java Doc) public double getLabelAngle()(Code)(Java Doc) protected Rectangle2D getLabelEnclosure(Graphics2D g2, RectangleEdge edge)(Code)(Java Doc) public Font getLabelFont()(Code)(Java Doc) public RectangleInsets getLabelInsets()(Code)(Java Doc) public Paint getLabelPaint()(Code)(Java Doc) public Plot getPlot()(Code)(Java Doc) public Font getTickLabelFont()(Code)(Java Doc) public RectangleInsets getTickLabelInsets()(Code)(Java Doc) public Paint getTickLabelPaint()(Code)(Java Doc) public float getTickMarkInsideLength()(Code)(Java Doc) public float getTickMarkOutsideLength()(Code)(Java Doc) public Paint getTickMarkPaint()(Code)(Java Doc) public Stroke getTickMarkStroke()(Code)(Java Doc) public boolean hasListener(EventListener listener)(Code)(Java Doc) public boolean isAxisLineVisible()(Code)(Java Doc) public boolean isTickLabelsVisible()(Code)(Java Doc) public boolean isTickMarksVisible()(Code)(Java Doc) public boolean isVisible()(Code)(Java Doc) protected void notifyListeners(AxisChangeEvent event)(Code)(Java Doc) abstract public List refreshTicks(Graphics2D g2, AxisState state, Rectangle2D dataArea, RectangleEdge edge)(Code)(Java Doc) public void removeChangeListener(AxisChangeListener listener)(Code)(Java Doc) abstract public AxisSpace reserveSpace(Graphics2D g2, Plot plot, Rectangle2D plotArea, RectangleEdge edge, AxisSpace space)(Code)(Java Doc) public void setAxisLinePaint(Paint paint)(Code)(Java Doc) public void setAxisLineStroke(Stroke stroke)(Code)(Java Doc) public void setAxisLineVisible(boolean visible)(Code)(Java Doc) public void setFixedDimension(double dimension)(Code)(Java Doc) public void setLabel(String label)(Code)(Java Doc) public void setLabelAngle(double angle)(Code)(Java Doc) public void setLabelFont(Font font)(Code)(Java Doc) public void setLabelInsets(RectangleInsets insets)(Code)(Java Doc) public void setLabelPaint(Paint paint)(Code)(Java Doc) public void setPlot(Plot plot)(Code)(Java Doc) public void setTickLabelFont(Font font)(Code)(Java Doc) public void setTickLabelInsets(RectangleInsets insets)(Code)(Java Doc) public void setTickLabelPaint(Paint paint)(Code)(Java Doc) public void setTickLabelsVisible(boolean flag)(Code)(Java Doc) public void setTickMarkInsideLength(float length)(Code)(Java Doc) public void setTickMarkOutsideLength(float length)(Code)(Java Doc) public void setTickMarkPaint(Paint paint)(Code)(Java Doc) public void setTickMarkStroke(Stroke stroke)(Code)(Java Doc) public void setTickMarksVisible(boolean flag)(Code)(Java Doc) public void setVisible(boolean flag)(Code)(Java Doc)
|
|
|