public interface ScatterChart
| Modifier and Type | Method and Description |
|---|---|
int |
getNumPoints()
Returns the number of points
|
java.awt.Paint |
getPaint(int index)
Returns the paint that should be used for the specified point.
|
double |
getPointX(int index)
Returns the x-coordinate of the specified point
|
double |
getPointY(int index)
Returns the y-coordinate of the specified point
|
java.awt.Shape |
getShape(int index)
Returns the shape that should be used for the specified point.
|
int getNumPoints()
double getPointX(int index)
index - The index of the pointjava.lang.IndexOutOfBoundsException - May be thrown if the index is
smaller than 0 or not smaller than getNumPoints()double getPointY(int index)
index - The index of the pointjava.lang.IndexOutOfBoundsException - May be thrown if the index is
smaller than 0 or not smaller than getNumPoints()java.awt.Shape getShape(int index)
null, then no shape will be painted.index - The index of the pointjava.lang.IndexOutOfBoundsException - May be thrown if the index is
smaller than 0 or not smaller than getNumPoints()java.awt.Paint getPaint(int index)
null, then no shape will be painted.index - The index of the pointjava.lang.IndexOutOfBoundsException - May be thrown if the index is
smaller than 0 or not smaller than getNumPoints()Copyright © 2018. All Rights Reserved.