Uses of Interface
org.jfree.data.flow.FlowDataset
Packages that use 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
Methods in org.jfree.chart.labels with parameters of type FlowDatasetModifier 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
Methods in org.jfree.chart.plot.flow that return FlowDatasetMethods in org.jfree.chart.plot.flow with parameters of type FlowDatasetModifier and TypeMethodDescriptionvoidFlowPlot.setDataset(FlowDataset dataset) Sets the dataset for the plot and sends a change notification to all registered listeners.Constructors in org.jfree.chart.plot.flow with parameters of type FlowDatasetModifierConstructorDescriptionFlowPlot(FlowDataset dataset) Creates a new instance that will source data from the specified dataset. -
Uses of FlowDataset in org.jfree.data.flow
Classes in org.jfree.data.flow that implement FlowDatasetModifier and TypeClassDescriptionclassDefaultFlowDataset<K extends Comparable<K>>A dataset representing flows between source and destination nodes.Methods in org.jfree.data.flow with parameters of type FlowDatasetModifier 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) Returnstrueif any of the flows in the dataset have a property 'selected' with the valueBoolean.TRUE, andfalseotherwise.static <K extends Comparable<K>>
booleanFlowDatasetUtils.hasNodeSelections(FlowDataset<K> dataset) Returnstrueif any of the nodes in the dataset have a property 'selected' with the valueBoolean.TRUE, andfalseotherwise.static <K extends Comparable<K>>
intFlowDatasetUtils.selectedNodeCount(FlowDataset<K> dataset) Returns the number of selected nodes.