Package com.storedobject.chart
Class SankeyChart.Node
java.lang.Object
com.storedobject.chart.AbstractPart
com.storedobject.chart.ComposedPart
com.storedobject.chart.SankeyChart.Node
- All Implemented Interfaces:
ComponentPart
,ComponentProperty
,HasAnimation
,HasEmphasis
,HasItemStyle
,HasLabel
,HasPadding
,HasPolarProperty
,HasPosition
- Enclosing class:
SankeyChart
Sankey data node class.
- Author:
- Syam
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Encode the JSON string with the properties of this.This is invoked to determine the class of the label to create.getName()
Get the name of the node.protected boolean
hasId()
Whether Id needs to be sent as part of the JSON or not.void
setDepth
(int depth) Set the depth of the node.void
Set the value of the node.Methods inherited from class com.storedobject.chart.ComposedPart
getAnimation, getEmphasis, getItemStyle, getLabel, getPadding, getPolarProperty, getPosition, hide, setAnimation, setEmphasis, setItemStyle, setLabel, setPadding, setPolarProperty, setPosition, show, validate
Methods inherited from class com.storedobject.chart.AbstractPart
equals, getId, getLabelTag, getSerial, getZ, hashCode, 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, getRenderingIndex, setName, setRenderingIndex
Methods inherited from interface com.storedobject.chart.HasPolarProperty
setHoleRadius, setRadius
-
Constructor Details
-
Node
-
-
Method Details
-
hasId
protected boolean hasId()Description copied from class:AbstractPart
Whether Id needs to be sent as part of the JSON or not.- Overrides:
hasId
in classAbstractPart
- Returns:
- True/false.
-
getName
Get the name of the node.- Specified by:
getName
in interfaceComponentPart
- Overrides:
getName
in classAbstractPart
- Returns:
- Name of the node.
-
setValue
Set the value of the node.- Parameters:
value
- The value of the node, which determines the height of the node in horizontal orientation or width in the vertical orientation.
-
setDepth
public void setDepth(int depth) Set the depth of the node.- Parameters:
depth
- The layer of the node, value starts from 0.
-
encodeJSON
Description copied from interface:ComponentProperty
Encode the JSON string with the properties of this.- Specified by:
encodeJSON
in interfaceComponentProperty
- Overrides:
encodeJSON
in classComposedPart
- Parameters:
sb
- Encoded JSON string to be appended to this.
-
getLabelClass
Description copied from class:ComposedPart
This is invoked to determine the class of the label to create. The class should have a default constructor.- Overrides:
getLabelClass
in classComposedPart
- Returns:
- Label.
-