| |
|
| java.lang.Object org.jfree.experimental.chart.plot.dial.AbstractDialLayer org.jfree.experimental.chart.plot.dial.DialPointer
Inner Class :public static class Pin extends DialPointer implements PublicCloneable | |
Inner Class :public static class Pointer extends DialPointer implements PublicCloneable | |
Field Summary | |
int | datasetIndex The dataset index for the needle. | double | radius The needle radius. |
Constructor Summary | |
public | DialPointer() Creates a new DialPointer instance. | public | DialPointer(int datasetIndex) Creates a new pointer for the specified dataset. |
Method Summary | |
public Object | clone() Returns a clone of the pointer. | public int | getDatasetIndex() Returns the dataset index that the pointer maps to. | public double | getRadius() Returns the radius of the pointer. | public boolean | isClippedToWindow() Returns true to indicate that this layer should be
clipped within the dial window. | public void | setDatasetIndex(int index) Sets the dataset index for the pointer. | public void | setRadius(double radius) Sets the radius of the pointer. |
datasetIndex | int datasetIndex(Code) | | The dataset index for the needle.
|
radius | double radius(Code) | | The needle radius.
|
DialPointer | public DialPointer()(Code) | | Creates a new DialPointer instance.
|
DialPointer | public DialPointer(int datasetIndex)(Code) | | Creates a new pointer for the specified dataset.
Parameters: datasetIndex - the dataset index. |
getDatasetIndex | public int getDatasetIndex()(Code) | | Returns the dataset index that the pointer maps to.
The dataset index. |
isClippedToWindow | public boolean isClippedToWindow()(Code) | | Returns true to indicate that this layer should be
clipped within the dial window.
true . |
setDatasetIndex | public void setDatasetIndex(int index)(Code) | | Sets the dataset index for the pointer.
Parameters: index - the index. |
setRadius | public void setRadius(double radius)(Code) | | Sets the radius of the pointer.
Parameters: radius - the radius. See Also: DialPointer.getRadius() |
|
|
|