Package com.storedobject.chart
Class AbstractChart
java.lang.Object
com.storedobject.chart.AbstractPart
com.storedobject.chart.Chart
com.storedobject.chart.AbstractChart
- All Implemented Interfaces:
Component
,ComponentPart
,ComponentProperty
,HasAnimation
,HasData
,HasEmphasis
- Direct Known Subclasses:
SelfPositioningChart
,XYChart
Abstract base class for creating specific subtypes of charts that requires more axes.
- Author:
- Syam
-
Nested Class Summary
Nested classes/interfaces inherited from class com.storedobject.chart.Chart
Chart.Emphasis, Chart.Label, Chart.LabelPosition
-
Constructor Summary
ConstructorsConstructorDescriptionAbstractChart
(ChartType type, boolean axesBased, AbstractDataProvider<?>... data) Create a chart of a given type and data.AbstractChart
(ChartType type, AbstractDataProvider<?>... data) Create a chart of a given type and data. -
Method Summary
Modifier and TypeMethodDescriptionfinal void
setData
(AbstractDataProvider<?>... data) This method if invoked will raise aRuntimeException
if this is an axes-based chart.protected final void
setData
(AbstractDataProvider<?> data, int index) Use this method to set data at a specific index in derived classes.final void
Calling this method does not have any effect.void
validate()
This method is invoked bySOChart
to check if the component or part is valid or not.Methods inherited from class com.storedobject.chart.Chart
addEvent, addParts, dataToEmbed, dataValue, dataValueIndex, declareData, encodeJSON, getAnimation, getCoordinateSystem, getData, getEmphasis, getEvents, getItemStyle, getLabel, getLabelName, getMarkArea, getMax, getMin, getName, getTooltip, getType, plotOn, plotOn, setAnimation, setColors, setCustomRenderer, setEmphasis, setItemStyle, setLabel, setMarkArea, setName, setTooltip, typeValue
Methods inherited from class com.storedobject.chart.AbstractPart
equals, getId, getLabelTag, getSerial, getZ, hashCode, hasId, setSerial, setZ
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.storedobject.chart.ComponentPart
className, getId, getRenderingIndex, getSerial, setRenderingIndex, setSerial
-
Constructor Details
-
AbstractChart
Create a chart of a given type and data.- Parameters:
type
- type of the chart.data
- Data to be used (multiples of them for charts that use multi-axis coordinate systems).
-
AbstractChart
Create a chart of a given type and data.- Parameters:
type
- type of the chart.axesBased
- Whether this is an axes-based chart or not.data
- Data to be used (multiples of them for charts that use multi-axis coordinate systems).
-
-
Method Details
-
setType
-
validate
Description copied from interface:ComponentPart
This method is invoked bySOChart
to check if the component or part is valid or not.- Specified by:
validate
in interfaceComponentPart
- Overrides:
validate
in classChart
- Throws:
ChartException
- Raises exception if the component or part is not valid.
-
setData
This method if invoked will raise aRuntimeException
if this is an axes-based chart. However, you can usesetData(AbstractDataProvider, int)
to set data at a particular index. -
setData
Use this method to set data at a specific index in derived classes.- Parameters:
data
- Data to be set.index
- Index position in the data array.
-