| java.lang.Object org.jfree.chart.plot.Plot org.jfree.chart.plot.XYPlot org.jfree.chart.plot.CombinedRangeXYPlot
Method Summary | |
public void | add(XYPlot subplot) Adds a subplot, with a default 'weight' of 1.
You must ensure that the subplot has a non-null domain axis. | public void | add(XYPlot subplot, int weight) Adds a subplot with a particular weight (greater than or equal to one). | protected AxisSpace | calculateAxisSpace(Graphics2D g2, Rectangle2D plotArea) Calculates the space required for the axes.
Parameters: g2 - the graphics device. Parameters: plotArea - the plot area. | public Object | clone() Returns a clone of the plot. | public void | draw(Graphics2D g2, Rectangle2D area, Point2D anchor, PlotState parentState, PlotRenderingInfo info) Draws the plot within the specified area on a graphics device. | public boolean | equals(Object obj) Tests this plot for equality with another object.
Parameters: obj - the other object. | public XYPlot | findSubplot(PlotRenderingInfo info, Point2D source) Returns the subplot (if any) that contains the (x, y) point (specified
in Java2D space).
Parameters: info - the chart rendering info (null not permitted). Parameters: source - the source point (null not permitted). | public Range | getDataRange(ValueAxis axis) Returns the range for the axis. | public double | getGap() Returns the space between subplots. | public LegendItemCollection | getLegendItems() Returns a collection of legend items for the plot. | public String | getPlotType() Returns a string describing the type of plot. | public List | getSubplots() Returns a list of the subplots. | public void | handleClick(int x, int y, PlotRenderingInfo info) Handles a 'click' on the plot by updating the anchor values... | public void | plotChanged(PlotChangeEvent event) Receives a
PlotChangeEvent and responds by notifying all
listeners. | public void | remove(XYPlot subplot) Removes a subplot from the combined chart. | protected void | setFixedDomainAxisSpaceForSubplots(AxisSpace space) Sets the space (width or height, depending on the orientation of the
plot) for the domain axis of each subplot. | public void | setGap(double gap) Sets the amount of space between subplots. | public void | setOrientation(PlotOrientation orientation) Sets the orientation for the plot (and all its subplots). | public void | setRenderer(XYItemRenderer renderer) Sets the item renderer FOR ALL SUBPLOTS. | public void | zoomDomainAxes(double factor, PlotRenderingInfo info, Point2D source) Multiplies the range on the domain axis/axes by the specified factor. | public void | zoomDomainAxes(double lowerPercent, double upperPercent, PlotRenderingInfo info, Point2D source) Zooms in on the domain axes. |
CombinedRangeXYPlot | public CombinedRangeXYPlot()(Code) | | Default constructor.
|
CombinedRangeXYPlot | public CombinedRangeXYPlot(ValueAxis rangeAxis)(Code) | | Creates a new plot.
Parameters: rangeAxis - the shared axis. |
add | public void add(XYPlot subplot)(Code) | | Adds a subplot, with a default 'weight' of 1.
You must ensure that the subplot has a non-null domain axis. The range
axis for the subplot will be set to null .
Parameters: subplot - the subplot. |
add | public void add(XYPlot subplot, int weight)(Code) | | Adds a subplot with a particular weight (greater than or equal to one).
The weight determines how much space is allocated to the subplot
relative to all the other subplots.
You must ensure that the subplot has a non-null domain axis. The range
axis for the subplot will be set to null .
Parameters: subplot - the subplot. Parameters: weight - the weight (must be 1 or greater). |
calculateAxisSpace | protected AxisSpace calculateAxisSpace(Graphics2D g2, Rectangle2D plotArea)(Code) | | Calculates the space required for the axes.
Parameters: g2 - the graphics device. Parameters: plotArea - the plot area. The space required for the axes. |
draw | public void draw(Graphics2D g2, Rectangle2D area, Point2D anchor, PlotState parentState, PlotRenderingInfo info)(Code) | | Draws the plot within the specified area on a graphics device.
Parameters: g2 - the graphics device. Parameters: area - the plot area (in Java2D space). Parameters: anchor - an anchor point in Java2D space (null permitted). Parameters: parentState - the state from the parent plot, if there is one (null permitted). Parameters: info - collects chart drawing information (null permitted). |
equals | public boolean equals(Object obj)(Code) | | Tests this plot for equality with another object.
Parameters: obj - the other object. true or false . |
findSubplot | public XYPlot findSubplot(PlotRenderingInfo info, Point2D source)(Code) | | Returns the subplot (if any) that contains the (x, y) point (specified
in Java2D space).
Parameters: info - the chart rendering info (null not permitted). Parameters: source - the source point (null not permitted). A subplot (possibly null ). |
getDataRange | public Range getDataRange(ValueAxis axis)(Code) | | Returns the range for the axis. This is the combined range of all the
subplots.
Parameters: axis - the axis. The range. |
getGap | public double getGap()(Code) | | Returns the space between subplots.
The gap |
getLegendItems | public LegendItemCollection getLegendItems()(Code) | | Returns a collection of legend items for the plot.
The legend items. |
getPlotType | public String getPlotType()(Code) | | Returns a string describing the type of plot.
The type of plot. |
getSubplots | public List getSubplots()(Code) | | Returns a list of the subplots.
The list (unmodifiable). |
handleClick | public void handleClick(int x, int y, PlotRenderingInfo info)(Code) | | Handles a 'click' on the plot by updating the anchor values...
Parameters: x - x-coordinate, where the click occured. Parameters: y - y-coordinate, where the click occured. Parameters: info - object containing information about the plot dimensions. |
remove | public void remove(XYPlot subplot)(Code) | | Removes a subplot from the combined chart.
Parameters: subplot - the subplot (null not permitted). |
setFixedDomainAxisSpaceForSubplots | protected void setFixedDomainAxisSpaceForSubplots(AxisSpace space)(Code) | | Sets the space (width or height, depending on the orientation of the
plot) for the domain axis of each subplot.
Parameters: space - the space. |
setGap | public void setGap(double gap)(Code) | | Sets the amount of space between subplots.
Parameters: gap - the gap between subplots |
setOrientation | public void setOrientation(PlotOrientation orientation)(Code) | | Sets the orientation for the plot (and all its subplots).
Parameters: orientation - the orientation. |
setRenderer | public void setRenderer(XYItemRenderer renderer)(Code) | | Sets the item renderer FOR ALL SUBPLOTS. Registered listeners are
notified that the plot has been modified.
Note: usually you will want to set the renderer independently for each
subplot, which is NOT what this method does.
Parameters: renderer - the new renderer. |
zoomDomainAxes | public void zoomDomainAxes(double factor, PlotRenderingInfo info, Point2D source)(Code) | | Multiplies the range on the domain axis/axes by the specified factor.
Parameters: factor - the zoom factor. Parameters: info - the plot rendering info (null not permitted). Parameters: source - the source point (null not permitted). |
zoomDomainAxes | public void zoomDomainAxes(double lowerPercent, double upperPercent, PlotRenderingInfo info, Point2D source)(Code) | | Zooms in on the domain axes.
Parameters: lowerPercent - the lower bound. Parameters: upperPercent - the upper bound. Parameters: info - the plot rendering info (null not permitted). Parameters: source - the source point (null not permitted). |
Methods inherited from org.jfree.chart.plot.XYPlot | public void addAnnotation(XYAnnotation annotation)(Code)(Java Doc) public void addDomainMarker(Marker marker)(Code)(Java Doc) public void addDomainMarker(Marker marker, Layer layer)(Code)(Java Doc) public void addDomainMarker(int index, Marker marker, Layer layer)(Code)(Java Doc) public void addRangeMarker(Marker marker)(Code)(Java Doc) public void addRangeMarker(Marker marker, Layer layer)(Code)(Java Doc) public void addRangeMarker(int index, Marker marker, Layer layer)(Code)(Java Doc) protected AxisSpace calculateAxisSpace(Graphics2D g2, Rectangle2D plotArea)(Code)(Java Doc) protected AxisSpace calculateDomainAxisSpace(Graphics2D g2, Rectangle2D plotArea, AxisSpace space)(Code)(Java Doc) protected AxisSpace calculateRangeAxisSpace(Graphics2D g2, Rectangle2D plotArea, AxisSpace space)(Code)(Java Doc) public void clearAnnotations()(Code)(Java Doc) public void clearDomainAxes()(Code)(Java Doc) public void clearDomainMarkers()(Code)(Java Doc) public void clearDomainMarkers(int index)(Code)(Java Doc) public void clearRangeAxes()(Code)(Java Doc) public void clearRangeMarkers()(Code)(Java Doc) public void clearRangeMarkers(int index)(Code)(Java Doc) public Object clone() throws CloneNotSupportedException(Code)(Java Doc) public void configureDomainAxes()(Code)(Java Doc) public void configureRangeAxes()(Code)(Java Doc) public void datasetChanged(DatasetChangeEvent event)(Code)(Java Doc) public void draw(Graphics2D g2, Rectangle2D area, Point2D anchor, PlotState parentState, PlotRenderingInfo info)(Code)(Java Doc) public void drawAnnotations(Graphics2D g2, Rectangle2D dataArea, PlotRenderingInfo info)(Code)(Java Doc) protected Map drawAxes(Graphics2D g2, Rectangle2D plotArea, Rectangle2D dataArea, PlotRenderingInfo plotState)(Code)(Java Doc) public void drawBackground(Graphics2D g2, Rectangle2D area)(Code)(Java Doc) protected void drawDomainCrosshair(Graphics2D g2, Rectangle2D dataArea, PlotOrientation orientation, double value, ValueAxis axis, Stroke stroke, Paint paint)(Code)(Java Doc) protected void drawDomainGridlines(Graphics2D g2, Rectangle2D dataArea, List ticks)(Code)(Java Doc) protected void drawDomainMarkers(Graphics2D g2, Rectangle2D dataArea, int index, Layer layer)(Code)(Java Doc) public void drawDomainTickBands(Graphics2D g2, Rectangle2D dataArea, List ticks)(Code)(Java Doc) protected void drawHorizontalLine(Graphics2D g2, Rectangle2D dataArea, double value, Stroke stroke, Paint paint)(Code)(Java Doc) protected void drawQuadrants(Graphics2D g2, Rectangle2D area)(Code)(Java Doc) protected void drawRangeCrosshair(Graphics2D g2, Rectangle2D dataArea, PlotOrientation orientation, double value, ValueAxis axis, Stroke stroke, Paint paint)(Code)(Java Doc) protected void drawRangeGridlines(Graphics2D g2, Rectangle2D area, List ticks)(Code)(Java Doc) protected void drawRangeMarkers(Graphics2D g2, Rectangle2D dataArea, int index, Layer layer)(Code)(Java Doc) public void drawRangeTickBands(Graphics2D g2, Rectangle2D dataArea, List ticks)(Code)(Java Doc) protected void drawVerticalLine(Graphics2D g2, Rectangle2D dataArea, double value, Stroke stroke, Paint paint)(Code)(Java Doc) protected void drawZeroDomainBaseline(Graphics2D g2, Rectangle2D area)(Code)(Java Doc) protected void drawZeroRangeBaseline(Graphics2D g2, Rectangle2D area)(Code)(Java Doc) public boolean equals(Object obj)(Code)(Java Doc) public List getAnnotations()(Code)(Java Doc) public RectangleInsets getAxisOffset()(Code)(Java Doc) public Range getDataRange(ValueAxis axis)(Code)(Java Doc) public XYDataset getDataset()(Code)(Java Doc) public XYDataset getDataset(int index)(Code)(Java Doc) public int getDatasetCount()(Code)(Java Doc) public DatasetRenderingOrder getDatasetRenderingOrder()(Code)(Java Doc) public ValueAxis getDomainAxis()(Code)(Java Doc) public ValueAxis getDomainAxis(int index)(Code)(Java Doc) public int getDomainAxisCount()(Code)(Java Doc) public RectangleEdge getDomainAxisEdge()(Code)(Java Doc) public RectangleEdge getDomainAxisEdge(int index)(Code)(Java Doc) public ValueAxis getDomainAxisForDataset(int index)(Code)(Java Doc) public int getDomainAxisIndex(ValueAxis axis)(Code)(Java Doc) public AxisLocation getDomainAxisLocation()(Code)(Java Doc) public AxisLocation getDomainAxisLocation(int index)(Code)(Java Doc) public Paint getDomainCrosshairPaint()(Code)(Java Doc) public Stroke getDomainCrosshairStroke()(Code)(Java Doc) public double getDomainCrosshairValue()(Code)(Java Doc) public Paint getDomainGridlinePaint()(Code)(Java Doc) public Stroke getDomainGridlineStroke()(Code)(Java Doc) public Collection getDomainMarkers(Layer layer)(Code)(Java Doc) public Collection getDomainMarkers(int index, Layer layer)(Code)(Java Doc) public Paint getDomainTickBandPaint()(Code)(Java Doc) public Paint getDomainZeroBaselinePaint()(Code)(Java Doc) public Stroke getDomainZeroBaselineStroke()(Code)(Java Doc) public AxisSpace getFixedDomainAxisSpace()(Code)(Java Doc) public LegendItemCollection getFixedLegendItems()(Code)(Java Doc) public AxisSpace getFixedRangeAxisSpace()(Code)(Java Doc) public int getIndexOf(XYItemRenderer renderer)(Code)(Java Doc) public LegendItemCollection getLegendItems()(Code)(Java Doc) public PlotOrientation getOrientation()(Code)(Java Doc) public String getPlotType()(Code)(Java Doc) public Point2D getQuadrantOrigin()(Code)(Java Doc) public Paint getQuadrantPaint(int index)(Code)(Java Doc) public ValueAxis getRangeAxis()(Code)(Java Doc) public ValueAxis getRangeAxis(int index)(Code)(Java Doc) public int getRangeAxisCount()(Code)(Java Doc) public RectangleEdge getRangeAxisEdge()(Code)(Java Doc) public RectangleEdge getRangeAxisEdge(int index)(Code)(Java Doc) public ValueAxis getRangeAxisForDataset(int index)(Code)(Java Doc) public int getRangeAxisIndex(ValueAxis axis)(Code)(Java Doc) public AxisLocation getRangeAxisLocation()(Code)(Java Doc) public AxisLocation getRangeAxisLocation(int index)(Code)(Java Doc) public Paint getRangeCrosshairPaint()(Code)(Java Doc) public Stroke getRangeCrosshairStroke()(Code)(Java Doc) public double getRangeCrosshairValue()(Code)(Java Doc) public Paint getRangeGridlinePaint()(Code)(Java Doc) public Stroke getRangeGridlineStroke()(Code)(Java Doc) public Collection getRangeMarkers(Layer layer)(Code)(Java Doc) public Collection getRangeMarkers(int index, Layer layer)(Code)(Java Doc) public Paint getRangeTickBandPaint()(Code)(Java Doc) public Paint getRangeZeroBaselinePaint()(Code)(Java Doc) public Stroke getRangeZeroBaselineStroke()(Code)(Java Doc) public XYItemRenderer getRenderer()(Code)(Java Doc) public XYItemRenderer getRenderer(int index)(Code)(Java Doc) public XYItemRenderer getRendererForDataset(XYDataset dataset)(Code)(Java Doc) public int getSeriesCount()(Code)(Java Doc) public SeriesRenderingOrder getSeriesRenderingOrder()(Code)(Java Doc) public int getWeight()(Code)(Java Doc) public void handleClick(int x, int y, PlotRenderingInfo info)(Code)(Java Doc) public int indexOf(XYDataset dataset)(Code)(Java Doc) public boolean isDomainCrosshairLockedOnData()(Code)(Java Doc) public boolean isDomainCrosshairVisible()(Code)(Java Doc) public boolean isDomainGridlinesVisible()(Code)(Java Doc) public boolean isDomainZeroBaselineVisible()(Code)(Java Doc) public boolean isDomainZoomable()(Code)(Java Doc) public boolean isRangeCrosshairLockedOnData()(Code)(Java Doc) public boolean isRangeCrosshairVisible()(Code)(Java Doc) public boolean isRangeGridlinesVisible()(Code)(Java Doc) public boolean isRangeZeroBaselineVisible()(Code)(Java Doc) public boolean isRangeZoomable()(Code)(Java Doc) public void mapDatasetToDomainAxis(int index, int axisIndex)(Code)(Java Doc) public void mapDatasetToRangeAxis(int index, int axisIndex)(Code)(Java Doc) public boolean removeAnnotation(XYAnnotation annotation)(Code)(Java Doc) public boolean render(Graphics2D g2, Rectangle2D dataArea, int index, PlotRenderingInfo info, CrosshairState crosshairState)(Code)(Java Doc) public void rendererChanged(RendererChangeEvent event)(Code)(Java Doc) public void setAxisOffset(RectangleInsets offset)(Code)(Java Doc) public void setDataset(XYDataset dataset)(Code)(Java Doc) public void setDataset(int index, XYDataset dataset)(Code)(Java Doc) public void setDatasetRenderingOrder(DatasetRenderingOrder order)(Code)(Java Doc) public void setDomainAxes(ValueAxis[] axes)(Code)(Java Doc) public void setDomainAxis(ValueAxis axis)(Code)(Java Doc) public void setDomainAxis(int index, ValueAxis axis)(Code)(Java Doc) public void setDomainAxis(int index, ValueAxis axis, boolean notify)(Code)(Java Doc) public void setDomainAxisLocation(AxisLocation location)(Code)(Java Doc) public void setDomainAxisLocation(AxisLocation location, boolean notify)(Code)(Java Doc) public void setDomainAxisLocation(int index, AxisLocation location)(Code)(Java Doc) public void setDomainAxisLocation(int index, AxisLocation location, boolean notify)(Code)(Java Doc) public void setDomainCrosshairLockedOnData(boolean flag)(Code)(Java Doc) public void setDomainCrosshairPaint(Paint paint)(Code)(Java Doc) public void setDomainCrosshairStroke(Stroke stroke)(Code)(Java Doc) public void setDomainCrosshairValue(double value)(Code)(Java Doc) public void setDomainCrosshairValue(double value, boolean notify)(Code)(Java Doc) public void setDomainCrosshairVisible(boolean flag)(Code)(Java Doc) public void setDomainGridlinePaint(Paint paint)(Code)(Java Doc) public void setDomainGridlineStroke(Stroke stroke)(Code)(Java Doc) public void setDomainGridlinesVisible(boolean visible)(Code)(Java Doc) public void setDomainTickBandPaint(Paint paint)(Code)(Java Doc) public void setDomainZeroBaselinePaint(Paint paint)(Code)(Java Doc) public void setDomainZeroBaselineStroke(Stroke stroke)(Code)(Java Doc) public void setDomainZeroBaselineVisible(boolean visible)(Code)(Java Doc) public void setFixedDomainAxisSpace(AxisSpace space)(Code)(Java Doc) public void setFixedLegendItems(LegendItemCollection items)(Code)(Java Doc) public void setFixedRangeAxisSpace(AxisSpace space)(Code)(Java Doc) public void setOrientation(PlotOrientation orientation)(Code)(Java Doc) public void setQuadrantOrigin(Point2D origin)(Code)(Java Doc) public void setQuadrantPaint(int index, Paint paint)(Code)(Java Doc) public void setRangeAxes(ValueAxis[] axes)(Code)(Java Doc) public void setRangeAxis(ValueAxis axis)(Code)(Java Doc) public void setRangeAxis(int index, ValueAxis axis)(Code)(Java Doc) public void setRangeAxis(int index, ValueAxis axis, boolean notify)(Code)(Java Doc) public void setRangeAxisLocation(AxisLocation location)(Code)(Java Doc) public void setRangeAxisLocation(AxisLocation location, boolean notify)(Code)(Java Doc) public void setRangeAxisLocation(int index, AxisLocation location)(Code)(Java Doc) public void setRangeAxisLocation(int index, AxisLocation location, boolean notify)(Code)(Java Doc) public void setRangeCrosshairLockedOnData(boolean flag)(Code)(Java Doc) public void setRangeCrosshairPaint(Paint paint)(Code)(Java Doc) public void setRangeCrosshairStroke(Stroke stroke)(Code)(Java Doc) public void setRangeCrosshairValue(double value)(Code)(Java Doc) public void setRangeCrosshairValue(double value, boolean notify)(Code)(Java Doc) public void setRangeCrosshairVisible(boolean flag)(Code)(Java Doc) public void setRangeGridlinePaint(Paint paint)(Code)(Java Doc) public void setRangeGridlineStroke(Stroke stroke)(Code)(Java Doc) public void setRangeGridlinesVisible(boolean visible)(Code)(Java Doc) public void setRangeTickBandPaint(Paint paint)(Code)(Java Doc) public void setRangeZeroBaselinePaint(Paint paint)(Code)(Java Doc) public void setRangeZeroBaselineStroke(Stroke stroke)(Code)(Java Doc) public void setRangeZeroBaselineVisible(boolean visible)(Code)(Java Doc) public void setRenderer(XYItemRenderer renderer)(Code)(Java Doc) public void setRenderer(int index, XYItemRenderer renderer)(Code)(Java Doc) public void setRenderer(int index, XYItemRenderer renderer, boolean notify)(Code)(Java Doc) public void setRenderers(XYItemRenderer[] renderers)(Code)(Java Doc) public void setSeriesRenderingOrder(SeriesRenderingOrder order)(Code)(Java Doc) public void setWeight(int weight)(Code)(Java Doc) public void zoomDomainAxes(double factor, PlotRenderingInfo info, Point2D source)(Code)(Java Doc) public void zoomDomainAxes(double lowerPercent, double upperPercent, PlotRenderingInfo info, Point2D source)(Code)(Java Doc) public void zoomRangeAxes(double factor, PlotRenderingInfo info, Point2D source)(Code)(Java Doc) public void zoomRangeAxes(double lowerPercent, double upperPercent, PlotRenderingInfo info, Point2D source)(Code)(Java Doc)
|
Methods inherited from org.jfree.chart.plot.Plot | public void addChangeListener(PlotChangeListener listener)(Code)(Java Doc) public void axisChanged(AxisChangeEvent event)(Code)(Java Doc) public Object clone() throws CloneNotSupportedException(Code)(Java Doc) public void datasetChanged(DatasetChangeEvent event)(Code)(Java Doc) abstract public void draw(Graphics2D g2, Rectangle2D area, Point2D anchor, PlotState parentState, PlotRenderingInfo info)(Code)(Java Doc) public void drawBackground(Graphics2D g2, Rectangle2D area)(Code)(Java Doc) public void drawBackgroundImage(Graphics2D g2, Rectangle2D area)(Code)(Java Doc) protected void drawNoDataMessage(Graphics2D g2, Rectangle2D area)(Code)(Java Doc) public void drawOutline(Graphics2D g2, Rectangle2D area)(Code)(Java Doc) public boolean equals(Object obj)(Code)(Java Doc) protected void fillBackground(Graphics2D g2, Rectangle2D area)(Code)(Java Doc) protected void fillBackground(Graphics2D g2, Rectangle2D area, PlotOrientation orientation)(Code)(Java Doc) public float getBackgroundAlpha()(Code)(Java Doc) public Image getBackgroundImage()(Code)(Java Doc) public int getBackgroundImageAlignment()(Code)(Java Doc) public float getBackgroundImageAlpha()(Code)(Java Doc) public Paint getBackgroundPaint()(Code)(Java Doc) public DatasetGroup getDatasetGroup()(Code)(Java Doc) public DrawingSupplier getDrawingSupplier()(Code)(Java Doc) public float getForegroundAlpha()(Code)(Java Doc) public RectangleInsets getInsets()(Code)(Java Doc) public LegendItemCollection getLegendItems()(Code)(Java Doc) public String getNoDataMessage()(Code)(Java Doc) public Font getNoDataMessageFont()(Code)(Java Doc) public Paint getNoDataMessagePaint()(Code)(Java Doc) public Paint getOutlinePaint()(Code)(Java Doc) public Stroke getOutlineStroke()(Code)(Java Doc) public Plot getParent()(Code)(Java Doc) abstract public String getPlotType()(Code)(Java Doc) protected double getRectX(double x, double w1, double w2, RectangleEdge edge)(Code)(Java Doc) protected double getRectY(double y, double h1, double h2, RectangleEdge edge)(Code)(Java Doc) public Plot getRootPlot()(Code)(Java Doc) public void handleClick(int x, int y, PlotRenderingInfo info)(Code)(Java Doc) public boolean isOutlineVisible()(Code)(Java Doc) public boolean isSubplot()(Code)(Java Doc) public void markerChanged(MarkerChangeEvent event)(Code)(Java Doc) public void notifyListeners(PlotChangeEvent event)(Code)(Java Doc) public void removeChangeListener(PlotChangeListener listener)(Code)(Java Doc) public static RectangleEdge resolveDomainAxisLocation(AxisLocation location, PlotOrientation orientation)(Code)(Java Doc) public static RectangleEdge resolveRangeAxisLocation(AxisLocation location, PlotOrientation orientation)(Code)(Java Doc) public void setBackgroundAlpha(float alpha)(Code)(Java Doc) public void setBackgroundImage(Image image)(Code)(Java Doc) public void setBackgroundImageAlignment(int alignment)(Code)(Java Doc) public void setBackgroundImageAlpha(float alpha)(Code)(Java Doc) public void setBackgroundPaint(Paint paint)(Code)(Java Doc) protected void setDatasetGroup(DatasetGroup group)(Code)(Java Doc) public void setDrawingSupplier(DrawingSupplier supplier)(Code)(Java Doc) public void setForegroundAlpha(float alpha)(Code)(Java Doc) public void setInsets(RectangleInsets insets)(Code)(Java Doc) public void setInsets(RectangleInsets insets, boolean notify)(Code)(Java Doc) public void setNoDataMessage(String message)(Code)(Java Doc) public void setNoDataMessageFont(Font font)(Code)(Java Doc) public void setNoDataMessagePaint(Paint paint)(Code)(Java Doc) public void setOutlinePaint(Paint paint)(Code)(Java Doc) public void setOutlineStroke(Stroke stroke)(Code)(Java Doc) public void setOutlineVisible(boolean visible)(Code)(Java Doc) public void setParent(Plot parent)(Code)(Java Doc) public void zoom(double percent)(Code)(Java Doc)
|
|
|