void |
CategoryPlot.addDomainMarker(int index,
CategoryMarker marker,
Layer layer) |
Adds a marker for display by a particular renderer and sends a
PlotChangeEvent to all registered listeners.
|
void |
CategoryPlot.addDomainMarker(int index,
CategoryMarker marker,
Layer layer,
boolean notify) |
Adds a marker for display by a particular renderer and, if requested,
sends a PlotChangeEvent to all registered listeners.
|
void |
CategoryPlot.addDomainMarker(CategoryMarker marker,
Layer layer) |
Adds a marker for display against the domain axis and sends a
PlotChangeEvent to all registered listeners.
|
void |
XYPlot.addDomainMarker(int index,
Marker marker,
Layer layer) |
Adds a marker for a specific dataset/renderer and sends a
PlotChangeEvent to all registered listeners.
|
void |
XYPlot.addDomainMarker(int index,
Marker marker,
Layer layer,
boolean notify) |
Adds a marker for a specific dataset/renderer and, if requested, sends a
PlotChangeEvent to all registered listeners.
|
void |
XYPlot.addDomainMarker(Marker marker,
Layer layer) |
Adds a marker for the domain axis in the specified layer and sends a
PlotChangeEvent to all registered listeners.
|
void |
CategoryPlot.addRangeMarker(int index,
Marker marker,
Layer layer) |
Adds a marker for display by a particular renderer and sends a
PlotChangeEvent to all registered listeners.
|
void |
CategoryPlot.addRangeMarker(int index,
Marker marker,
Layer layer,
boolean notify) |
Adds a marker for display by a particular renderer and sends a
PlotChangeEvent to all registered listeners.
|
void |
CategoryPlot.addRangeMarker(Marker marker,
Layer layer) |
Adds a marker for display against the range axis and sends a
PlotChangeEvent to all registered listeners.
|
void |
XYPlot.addRangeMarker(int index,
Marker marker,
Layer layer) |
Adds a marker for a specific dataset/renderer and sends a
PlotChangeEvent to all registered listeners.
|
void |
XYPlot.addRangeMarker(int index,
Marker marker,
Layer layer,
boolean notify) |
Adds a marker for a specific dataset/renderer and, if requested, sends a
PlotChangeEvent to all registered listeners.
|
void |
XYPlot.addRangeMarker(Marker marker,
Layer layer) |
Adds a marker for the range axis in the specified layer and sends a
PlotChangeEvent to all registered listeners.
|
protected void |
CategoryPlot.drawDomainMarkers(java.awt.Graphics2D g2,
java.awt.geom.Rectangle2D dataArea,
int index,
Layer layer) |
Draws the domain markers (if any) for an axis and layer.
|
protected void |
XYPlot.drawDomainMarkers(java.awt.Graphics2D g2,
java.awt.geom.Rectangle2D dataArea,
int index,
Layer layer) |
Draws the domain markers (if any) for an axis and layer.
|
protected void |
CategoryPlot.drawRangeMarkers(java.awt.Graphics2D g2,
java.awt.geom.Rectangle2D dataArea,
int index,
Layer layer) |
Draws the range markers (if any) for an axis and layer.
|
protected void |
XYPlot.drawRangeMarkers(java.awt.Graphics2D g2,
java.awt.geom.Rectangle2D dataArea,
int index,
Layer layer) |
Draws the range markers (if any) for a renderer and layer.
|
java.util.Collection<CategoryMarker> |
CategoryPlot.getDomainMarkers(int index,
Layer layer) |
Returns a collection of domain markers for a particular renderer and
layer.
|
java.util.Collection |
CategoryPlot.getDomainMarkers(Layer layer) |
Returns the list of domain markers (read only) for the specified layer.
|
java.util.Collection<Marker> |
XYPlot.getDomainMarkers(int index,
Layer layer) |
Returns a collection of domain markers for a particular renderer and
layer.
|
java.util.Collection |
XYPlot.getDomainMarkers(Layer layer) |
Returns the list of domain markers (read only) for the specified layer.
|
java.util.Collection<Marker> |
CategoryPlot.getRangeMarkers(int index,
Layer layer) |
Returns a collection of range markers for a particular renderer and
layer.
|
java.util.Collection |
CategoryPlot.getRangeMarkers(Layer layer) |
Returns the list of range markers (read only) for the specified layer.
|
java.util.Collection<Marker> |
XYPlot.getRangeMarkers(int index,
Layer layer) |
Returns a collection of range markers for a particular renderer and
layer.
|
java.util.Collection<Marker> |
XYPlot.getRangeMarkers(Layer layer) |
Returns the list of range markers (read only) for the specified layer.
|
boolean |
CategoryPlot.removeDomainMarker(int index,
Marker marker,
Layer layer) |
Removes a marker for a specific dataset/renderer and sends a
PlotChangeEvent to all registered listeners.
|
boolean |
CategoryPlot.removeDomainMarker(int index,
Marker marker,
Layer layer,
boolean notify) |
Removes a marker for a specific dataset/renderer and, if requested,
sends a PlotChangeEvent to all registered listeners.
|
boolean |
CategoryPlot.removeDomainMarker(Marker marker,
Layer layer) |
Removes a marker for the domain axis in the specified layer and sends a
PlotChangeEvent to all registered listeners.
|
boolean |
XYPlot.removeDomainMarker(int index,
Marker marker,
Layer layer) |
Removes a marker for a specific dataset/renderer and sends a
PlotChangeEvent to all registered listeners.
|
boolean |
XYPlot.removeDomainMarker(int index,
Marker marker,
Layer layer,
boolean notify) |
Removes a marker for a specific dataset/renderer and, if requested,
sends a PlotChangeEvent to all registered listeners.
|
boolean |
XYPlot.removeDomainMarker(Marker marker,
Layer layer) |
Removes a marker for the domain axis in the specified layer and sends a
PlotChangeEvent to all registered listeners.
|
boolean |
CategoryPlot.removeRangeMarker(int index,
Marker marker,
Layer layer) |
Removes a marker for a specific dataset/renderer and sends a
PlotChangeEvent to all registered listeners.
|
boolean |
CategoryPlot.removeRangeMarker(int index,
Marker marker,
Layer layer,
boolean notify) |
Removes a marker for a specific dataset/renderer and sends a
PlotChangeEvent to all registered listeners.
|
boolean |
CategoryPlot.removeRangeMarker(Marker marker,
Layer layer) |
Removes a marker for the range axis in the specified layer and sends a
PlotChangeEvent to all registered listeners.
|
boolean |
XYPlot.removeRangeMarker(int index,
Marker marker,
Layer layer) |
Removes a marker for a specific dataset/renderer and sends a
PlotChangeEvent to all registered listeners.
|
boolean |
XYPlot.removeRangeMarker(int index,
Marker marker,
Layer layer,
boolean notify) |
Removes a marker for a specific dataset/renderer and sends a
PlotChangeEvent to all registered listeners.
|
boolean |
XYPlot.removeRangeMarker(Marker marker,
Layer layer) |
Removes a marker for the range axis in the specified layer and sends a
PlotChangeEvent to all registered listeners.
|