Package com.storedobject.chart
Class SunburstChart
java.lang.Object
com.storedobject.chart.AbstractPart
com.storedobject.chart.Chart
com.storedobject.chart.SunburstChart
- All Implemented Interfaces:
Component
,ComponentPart
,ComponentProperty
,HasAnimation
,HasData
,HasEmphasis
,HasPolarProperty
,HasPosition
Sunburst chart.
- Author:
- Syam
-
Nested Class Summary
Nested classes/interfaces inherited from class com.storedobject.chart.Chart
Chart.Emphasis, Chart.Label, Chart.LabelPosition
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addData
(TreeDataProvider... data) Add data to the chart.protected AbstractDataProvider
<?> Get the data to embed.final PolarProperty
getPolarProperty
(boolean create) Get the polar property.final Position
getPosition
(boolean create) Get the position of this on the chart display area.Get the list of data associated with this chart.void
removeData
(TreeDataProvider... data) Remove data from the chart.void
setData
(AbstractDataProvider<?>... data) Set data for the chart.final void
setPolarProperty
(PolarProperty polarProperty) Set the polar property.final void
setPosition
(Position position) Set the position of this.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, 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, setType, 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
Methods inherited from interface com.storedobject.chart.HasPolarProperty
setHoleRadius, setRadius
-
Constructor Details
-
SunburstChart
Create a tree chart.- Parameters:
data
- Data to be used.
-
-
Method Details
-
setData
Description copied from class:Chart
Set data for the chart. -
getSunburstData
Get the list of data associated with this chart.- Returns:
- List of data providers.
-
addData
Add data to the chart.- Parameters:
data
- List of data to add.
-
removeData
Remove data from the chart.- Parameters:
data
- List of data to remove.
-
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.
-
dataToEmbed
Description copied from class:Chart
Get the data to embed. This is useful only for those special charts that embed data in the chart itself rather than pointing to the dataset. Example:TreeChart
,GaugeChart
etc. If null is returned from this method, no data will be embedded.- Overrides:
dataToEmbed
in classChart
- Returns:
- Data to embed.
-
getPosition
Description copied from interface:HasPosition
Get the position of this on the chart display area. (Iftrue
is passed as the parameter, a new position will be created if not already exists).- Specified by:
getPosition
in interfaceHasPosition
- Parameters:
create
- Whether to create it or not.- Returns:
- Position.
-
setPosition
Description copied from interface:HasPosition
Set the position of this.- Specified by:
setPosition
in interfaceHasPosition
- Parameters:
position
- Position to set.
-
getPolarProperty
Description copied from interface:HasPolarProperty
Get the polar property. (Iftrue
is passed as the parameter, a new polar property will be created if not already exists).- Specified by:
getPolarProperty
in interfaceHasPolarProperty
- Parameters:
create
- Whether to create it or not.- Returns:
- Polar property.
-
setPolarProperty
Description copied from interface:HasPolarProperty
Set the polar property.- Specified by:
setPolarProperty
in interfaceHasPolarProperty
- Parameters:
polarProperty
- Polar property to set. It could benull
.
-