Class Chart

java.lang.Object
com.storedobject.chart.AbstractPart
com.storedobject.chart.Chart
All Implemented Interfaces:
Component, ComponentPart, ComponentProperty, HasAnimation, HasData, HasEmphasis
Direct Known Subclasses:
AbstractChart, BubbleChart, GraphChart, HeatmapChart, RadarChart, SelfPositioningSpecialChart, SunburstChart

public class Chart extends AbstractPart implements Component, HasData, HasAnimation, HasEmphasis

Chart. Since this is a concrete class, this may be directly used for creating a chart of a particular ChartType. It has got the flexibility that the ChartType can be changed at any time using setType(ChartType) method. However, there are concrete derivatives of this class such as PieChart, NightingaleRoseChart etc. where more chart-specific methods are available and data for the chart is checked more accurately for errors. If the data set for the chart is of invalid type, system tries to do its best to adapt that data but the chart may not appear if the data conversion fails.

Custom Charts: Any chart may be converted to a custom chart by setting up an item renderer to render the each data point. The item renderer can be specified via setCustomRenderer(String). However, please note that only a few custom renderers are currently available.

Positioning of charts within the display area of SOChart: Most charts need a CoordinateSystem to plot on and all CoordinateSystems support positioning (Please see CoordinateSystem.setPosition(Position)). Those which do not require a CoordinateSystem are called SelfPositioningChart and supports its own positioning mechanism (Please see SelfPositioningChart.setPosition(Position)).

Author:
Syam