Package com.storedobject.chart
Class SankeyChart.Edge
java.lang.Object
com.storedobject.chart.AbstractPart
com.storedobject.chart.ComposedPart
com.storedobject.chart.SankeyChart.Edge
- All Implemented Interfaces:
ComponentPart
,ComponentProperty
,HasAnimation
,HasEmphasis
,HasItemStyle
,HasLabel
,HasPadding
,HasPolarProperty
,HasPosition
- Enclosing class:
SankeyChart
Class that defines an edge between 2 Sankey nodes.
- Author:
- Syam
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Encode the JSON string with the properties of this.getFrom()
Get the starting node of the edge.This is invoked to determine the class of the label to create.protected String
final LineStyle
getLineStyle
(boolean create) Get line style.getTo()
Get the ending node of the edge.protected boolean
hasId()
Whether Id needs to be sent as part of the JSON or not.final void
setLineStyle
(LineStyle lineStyle) Set the line style.void
Set the value of the edge.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.ComposedPart
getAnimation, getEmphasis, getItemStyle, getLabel, getPadding, getPolarProperty, getPosition, hide, setAnimation, setEmphasis, setItemStyle, setLabel, setPadding, setPolarProperty, setPosition, show
Methods inherited from class com.storedobject.chart.AbstractPart
equals, getId, getName, 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
-
Edge
Constructor.- Parameters:
from
- Starting node.to
- Ending node.value
- The value of edge, which decides the width of edge..
-
-
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.
-
getFrom
-
getTo
-
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 classComposedPart
- Throws:
ChartException
- Raises exception if the component or part is not valid.
-
setValue
Set the value of the edge.- Parameters:
value
- The value of edge, which decides the width of edge..
-
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.
-
getLabelTag
- Overrides:
getLabelTag
in classAbstractPart
-
setLineStyle
Set the line style.- Parameters:
lineStyle
- Line style.
-
getLineStyle
Get line style.- Parameters:
create
- Passtrue
if it needs to be created if not exists.- Returns:
- Line style.
-