Class Cluster

java.lang.Object
eu.hansolo.fx.charts.Cluster
All Implemented Interfaces:
Comparable<Cluster>

public class Cluster extends Object implements Comparable<Cluster>
  • Property Details

  • Constructor Details

    • Cluster

      public Cluster()
    • Cluster

      public Cluster(String NAME)
    • Cluster

      public Cluster(String NAME, List<PlotItem> ITEMS)
    • Cluster

      public Cluster(List<PlotItem> ITEMS)
    • Cluster

      public Cluster(PlotItem... ITEMS)
    • Cluster

      public Cluster(String NAME, PlotItem... ITEMS)
    • Cluster

      public Cluster(String NAME, javafx.scene.paint.Color FILL, PlotItem... ITEMS)
    • Cluster

      public Cluster(String NAME, javafx.scene.paint.Color FILL, javafx.scene.paint.Color STROKE, PlotItem... ITEMS)
  • Method Details

    • getItems

      public Collection<PlotItem> getItems()
    • getSortedItems

      public Collection<PlotItem> getSortedItems()
    • addItem

      public void addItem(PlotItem ITEM)
    • removeItem

      public void removeItem(PlotItem ITEM)
    • addItems

      public void addItems(List<PlotItem> ITEMS)
    • addItems

      public void addItems(PlotItem... ITEMS)
    • getItemWithMaxValue

      public PlotItem getItemWithMaxValue()
    • getMaxValue

      public double getMaxValue()
    • clear

      public void clear()
    • getName

      public String getName()
      Gets the value of the property name.
      Property description:
    • setName

      public void setName(String NAME)
      Sets the value of the property name.
      Property description:
    • nameProperty

      public javafx.beans.property.StringProperty nameProperty()
      See Also:
    • getFill

      public javafx.scene.paint.Color getFill()
      Gets the value of the property fill.
      Property description:
    • setFill

      public void setFill(javafx.scene.paint.Color FILL)
      Sets the value of the property fill.
      Property description:
    • fillProperty

      public javafx.beans.property.ObjectProperty<javafx.scene.paint.Color> fillProperty()
      See Also:
    • getStroke

      public javafx.scene.paint.Color getStroke()
      Gets the value of the property stroke.
      Property description:
    • setStroke

      public void setStroke(javafx.scene.paint.Color STROKE)
      Sets the value of the property stroke.
      Property description:
    • strokeProperty

      public javafx.beans.property.ObjectProperty<javafx.scene.paint.Color> strokeProperty()
      See Also:
    • compareTo

      public int compareTo(Cluster other)
      Specified by:
      compareTo in interface Comparable<Cluster>