org.jfree.chart.block
public class: BlockParams [javadoc |
source]
java.lang.Object
org.jfree.chart.block.BlockParams
All Implemented Interfaces:
EntityBlockParams
A standard parameter object that can be passed to the draw() method defined
by the
Block class.
| Method from org.jfree.chart.block.BlockParams Detail: |
public boolean getGenerateEntities() {
return this.generateEntities;
}
Returns the flag that controls whether or not chart entities are
generated. |
public double getTranslateX() {
return this.translateX;
}
Returns the translation required to convert local x-coordinates back to
the coordinate space of the container. |
public double getTranslateY() {
return this.translateY;
}
Returns the translation required to convert local y-coordinates back to
the coordinate space of the container. |
public void setGenerateEntities(boolean generate) {
this.generateEntities = generate;
}
Sets the flag that controls whether or not chart entities are generated. |
public void setTranslateX(double x) {
this.translateX = x;
}
Sets the translation required to convert local x-coordinates into the
coordinate space of the container. |
public void setTranslateY(double y) {
this.translateY = y;
}
Sets the translation required to convert local y-coordinates into the
coordinate space of the container. |