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 classPoint.ArrayPoint<T>Represents an array like point without any key.Methods in org.zkoss.chart that return Point Modifier and Type Method Description PointChartsEvent. getPoint()Returns the point object, if any.PointSeries. getPoint(int index)Returns the point in the list from the given index.static <T> PointPoint. of(T... any)Returns a point with an array like data structure.static PointPoint. ofLow(String name, Number low)Constructs with name and low value.static PointPoint. ofLowHigh(String name, Number low, Number high)Constructs with name, low, and high value.static <T> PointPoint. ofMap(Map<String,T> map)Returns a point with a given map data structure.static PointPoint. 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 voidSeries. addPoint(Point point)Add a point at the end of the current points list.voidSeries. addPoint(Point point, boolean redraw, boolean shift, boolean animation)Add a point to the end of the current points list.voidSeries. addPoint(Point point, boolean redraw, boolean shift, Animation animation)Add a point at the end of the current points list.voidCharts. addSeriesAsDrilldown(Point point, Series series)Add a series to the chart as drilldown from a specific point in the parent series.voidCharts. selectPoint(Point selPoint, boolean accumulate)voidSeries. 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.
-