com.vaadin.flow.component.charts.model.

Class DataSeriesItemSankey

All Implemented Interfaces:

Serializable

public class DataSeriesItemSankey extends DataSeriesItem

DataSeriesItem that can hold also "from", "to" and "weight". Used in sankey series.

See Also:

  • Constructor Details

    • DataSeriesItemSankey

      public DataSeriesItemSankey()
    • DataSeriesItemSankey

      public DataSeriesItemSankey(String from, String to, Number weight)

      Constructs an item with from, to and weight values

      Parameters:

      from -

      to -

      weight -

  • Method Details

    • getFrom

      public String getFrom()
    • setFrom

      public void setFrom(String from)
    • getTo

      public String getTo()
    • setTo

      public void setTo(String to)
    • getWeight

      public Number getWeight()
    • setWeight

      public void setWeight(Number weight)