Represents a single data point that can be added to a {@link Series}. As an extension of {@link Configurable} each point instance can also optionally have configuration options set on it.Standard example:
chart.addSeries(chart.createSeries() .setName("Browser share") .setPoints(new Point[] { new Point(15, 45.0), new Point(25, 26.8), new Point(35, 12.8), new Point(46, 8.5), new Point(55, 6.2), new Point(65, 0.7) }) );
Advanced pie chart example (where the points represent categories and values for each category):
chart.addSeries(chart.createSeries() .setName("Browser share") .setPoints(new Point[]{ new Point("Firefox", 45.0), new Point("IE", 26.8), new Point("Chrome", 12.8) .setSliced(true) .setSelected(true), new Point("Safari", 8.5), new Point("Opera", 6.2), new Point("Others", 0.7) }) );
@author squinn@moxiegroup.com (Shawn Quinn)
@since 1.0.0