Package com.storedobject.chart
Class SankeyChart
java.lang.Object
com.storedobject.chart.AbstractPart
com.storedobject.chart.Chart
com.storedobject.chart.SelfPositioningSpecialChart
com.storedobject.chart.SankeyChart
- All Implemented Interfaces:
Component
,ComponentPart
,ComponentProperty
,HasAnimation
,HasData
,HasEmphasis
,HasPosition
Sankey chart.
- Author:
- Syam
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Class that defines an edge between 2 Sankey nodes.static class
Sankey data node class.Nested classes/interfaces inherited from class com.storedobject.chart.Chart
Chart.Emphasis, Chart.Label, Chart.LabelPosition
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a tree chart of the set of provided data. -
Method Summary
Modifier and TypeMethodDescriptionprotected AbstractDataProvider
<?> Get the data to embed.void
Encode the JSON string with the properties of this.final Chart.Label
getEdgeLabel
(boolean create) Get the label for the edges.final LineStyle
getLineStyle
(boolean create) Get line style.final Alignment
getNodeAlignment
(boolean create) Get the current node alignment.Get the Sankey data associated with this chart.final void
setData
(AbstractDataProvider<?>... data) Set data for the chart.final void
setEdgeLabel
(Chart.Label edgeLabel) Set the label for the edges.void
setHeight
(int height) Set height.final void
setLineStyle
(LineStyle lineStyle) Set the line style.final void
setNodeAlignment
(Alignment nodeAlignment) Set node alignment.final void
setNodeGap
(int nodeGap) Set node gap.final void
setNodeWidth
(int nodeWidth) Set node width.void
Set the Sankey data associated with this chart.final void
Set the orientation as vertical.final void
setWidth
(int width) Set width.Methods inherited from class com.storedobject.chart.SelfPositioningSpecialChart
getPosition, setPosition
Methods inherited from class com.storedobject.chart.Chart
addEvent, addParts, dataValue, dataValueIndex, declareData, 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, validate
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
-
SankeyChart
Create a tree chart of the set of provided data.- Parameters:
data
- Data to be used.
-
-
Method Details
-
setData
Description copied from class:Chart
Set data for the chart. -
getSankeyData
Get the Sankey data associated with this chart.- Returns:
- Sankey data.
-
setSankeyData
Set the Sankey data associated with this chart.- Parameters:
data
- Sankey data.
-
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.
-
setVertical
public final void setVertical()Set the orientation as vertical. -
setHeight
public void setHeight(int height) Set height.- Parameters:
height
- Height.
-
setWidth
public final void setWidth(int width) Set width.- Parameters:
width
- Width.
-
setNodeWidth
public final void setNodeWidth(int nodeWidth) Set node width.- Parameters:
nodeWidth
- The node width of rectangle in Sankey diagram.
-
setNodeGap
public final void setNodeGap(int nodeGap) Set node gap.- Parameters:
nodeGap
- The gap between any two rectangles in each column of the Sankey diagram.
-
setNodeAlignment
Set node alignment.- Parameters:
nodeAlignment
- Controls the horizontal alignment of nodes in the diagram. When orientation is vertical, it controls vertical alignment.
-
getNodeAlignment
Get the current node alignment. Iftrue
is passed as the parameter, a new alignment will be created if it doesn't exist.- Parameters:
create
- True/false.- Returns:
- Alignment.
-
setEdgeLabel
Set the label for the edges.- Parameters:
edgeLabel
- Edge label to set.
-
getEdgeLabel
Get the label for the edges.- Parameters:
create
- Passtrue
if it needs to be created if not exists.- Returns:
- Label.
-
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.
-
encodeJSON
Description copied from interface:ComponentProperty
Encode the JSON string with the properties of this.- Specified by:
encodeJSON
in interfaceComponentProperty
- Overrides:
encodeJSON
in classChart
- Parameters:
sb
- Encoded JSON string to be appended to this.
-