- class is not used by JFreeChart.
This class contains a single legend item along with position details for
drawing the item on a particular chart.
| Method from org.jfree.chart.DrawableLegendItem Detail: |
public double getHeight() {
return this.height;
} Deprecated!Get the height of this item. |
public LegendItem getItem() {
return this.item;
} Deprecated! |
public Point2D getLabelPosition() {
return this.labelPosition;
} Deprecated!Returns the label position. |
public Line2D getLine() {
return this.line;
} Deprecated! |
public Shape getMarker() {
return this.marker;
} Deprecated! |
public double getMaxX() {
return getX() + getWidth();
} Deprecated!Returns the largest X coordinate of the framing rectangle of this legend
item. |
public double getMaxY() {
return getY() + getHeight();
} Deprecated!Returns the largest Y coordinate of the framing rectangle of this legend
item. |
public double getWidth() {
return this.width;
} Deprecated!Get the width of this item. |
public double getX() {
return this.x;
} Deprecated!Get the x-coordinate for the item's location. |
public double getY() {
return this.y;
} Deprecated!Get the y-coordinate for the item's location. |
public void setBounds(double x,
double y,
double width,
double height) {
this.x = x;
this.y = y;
this.width = width;
this.height = height;
} Deprecated!Set the bounds of this item. |
public void setLabelPosition(Point2D position) {
this.labelPosition = position;
} Deprecated! |
public void setLine(Line2D l) {
this.line = l;
} Deprecated!Sets the line used to label this series. |
public void setMarker(Shape marker) {
this.marker = marker;
} Deprecated! |
public void setX(double x) {
this.x = x;
} Deprecated!Set the x-coordinate for the item's location. |
public void setY(double y) {
this.y = y;
} Deprecated!Set the y-coordinate for the item's location. |