Uses of Class
org.zkoss.chart.Point
-
Packages that use Point Package Description org.zkoss.chart -
-
Uses of Point in org.zkoss.chart
Subclasses of Point in org.zkoss.chart Modifier and Type Class Description static class
Point.ArrayPoint<T>
Represents an array like point without any key.Methods in org.zkoss.chart that return Point Modifier and Type Method Description Point
ChartsEvent. getPoint()
Returns the point object, if any.Point
Series. getPoint(int index)
Returns the point in the list from the given index.static <T> Point
Point. of(T... any)
Returns a point with an array like data structure.static Point
Point. ofLow(String name, Number low)
Constructs with name and low value.static Point
Point. ofLowHigh(String name, Number low, Number high)
Constructs with name, low, and high value.static <T> Point
Point. ofMap(Map<String,T> map)
Returns a point with a given map data structure.static Point
Point. ofXYZ(Number x, Number y, Number z)
Constructs with three numbers, x, y, and z.Methods in org.zkoss.chart that return types with arguments of type Point Modifier and Type Method Description List<Point>
Series. getData()
Returns the list of point dataSet<Point>
Charts. getSelectedPoints()
Returns a readonly set of all currently selected points in the chart.Methods in org.zkoss.chart with parameters of type Point Modifier and Type Method Description void
Series. addPoint(Point point)
Add a point at the end of the current points list.void
Series. addPoint(Point point, boolean redraw, boolean shift, boolean animation)
Add a point to the end of the current points list.void
Series. addPoint(Point point, boolean redraw, boolean shift, Animation animation)
Add a point at the end of the current points list.void
Charts. addSeriesAsDrilldown(Point point, Series series)
Add a series to the chart as drilldown from a specific point in the parent series.void
Charts. selectPoint(Point selPoint, boolean accumulate)
void
Series. setData(Point... data)
Sets an array of point dataConstructors in org.zkoss.chart with parameters of type Point Constructor Description Series(String id, Point... data)
Constructs the series with id and point data.Constructor parameters in org.zkoss.chart with type arguments of type Point Constructor Description Series(String id, List<Point> data)
Constructs the series with id and a list of point data.
-