Uses of Interface
org.jfree.data.flow.FlowDataset
Package
Description
Generators and other classes used for the display of item labels and tooltips.
Classes for creating flow plots (a type of Sankey chart).
Data interfaces and classes for flow plots (a type of Sankey chart).
-
Uses of FlowDataset in org.jfree.chart.labels
Modifier and TypeMethodDescriptionFlowLabelGenerator.generateLabel
(FlowDataset dataset, FlowKey key) Returns a label for the specified flow.StandardFlowLabelGenerator.generateLabel
(FlowDataset dataset, FlowKey key) Returns a label for the specified flow. -
Uses of FlowDataset in org.jfree.chart.plot.flow
Modifier and TypeMethodDescriptionvoid
FlowPlot.setDataset
(FlowDataset dataset) Sets the dataset for the plot and sends a change notification to all registered listeners.ModifierConstructorDescriptionFlowPlot
(FlowDataset dataset) Creates a new instance that will source data from the specified dataset. -
Uses of FlowDataset in org.jfree.data.flow
Modifier and TypeClassDescriptionclass
DefaultFlowDataset<K extends Comparable<K>>
A dataset representing flows between source and destination nodes.Modifier and TypeMethodDescriptionstatic <K extends Comparable<K>>
doubleFlowDatasetUtils.calculateInflow
(FlowDataset<K> dataset, K node, int stage) Returns the total inflow for the specified node (a destination node for the specified stage).static <K extends Comparable<K>>
doubleFlowDatasetUtils.calculateOutflow
(FlowDataset<K> dataset, K source, int stage) Returns the total outflow for the specified node (a source node for the specified stage).static <K extends Comparable<K>>
doubleFlowDatasetUtils.calculateTotalFlow
(FlowDataset<K> dataset, int stage) Returns the total flow from all sources to all destinations at the specified stage.static <K extends Comparable<K>>
booleanFlowDatasetUtils.hasFlowSelections
(FlowDataset<K> dataset) Returnstrue
if any of the flows in the dataset have a property 'selected' with the valueBoolean.TRUE
, andfalse
otherwise.static <K extends Comparable<K>>
booleanFlowDatasetUtils.hasNodeSelections
(FlowDataset<K> dataset) Returnstrue
if any of the nodes in the dataset have a property 'selected' with the valueBoolean.TRUE
, andfalse
otherwise.static <K extends Comparable<K>>
intFlowDatasetUtils.selectedNodeCount
(FlowDataset<K> dataset) Returns the number of selected nodes.