Class ValueChartItem

java.lang.Object
eu.hansolo.fx.charts.data.ValueChartItem
All Implemented Interfaces:
Item, ValueItem, Comparable<ValueChartItem>

public class ValueChartItem extends Object implements ValueItem, Comparable<ValueChartItem>
  • Property Details

  • Constructor Details

    • ValueChartItem

      public ValueChartItem()
    • ValueChartItem

      public ValueChartItem(boolean IS_EMPTY)
    • ValueChartItem

      public ValueChartItem(double VALUE, String NAME)
    • ValueChartItem

      public ValueChartItem(double VALUE, String NAME, boolean IS_EMPTY)
    • ValueChartItem

      public ValueChartItem(double VALUE, String NAME, javafx.scene.paint.Color FILL)
    • ValueChartItem

      public ValueChartItem(double VALUE, String NAME, javafx.scene.paint.Color FILL, boolean IS_EMPTY)
    • ValueChartItem

      public ValueChartItem(double VALUE, String NAME, javafx.scene.paint.Color FILL, javafx.scene.paint.Color STROKE, Symbol SYMBOL)
    • ValueChartItem

      public ValueChartItem(double VALUE, String NAME, javafx.scene.paint.Color FILL, javafx.scene.paint.Color STROKE, Symbol SYMBOL, boolean IS_EMPTY)
  • Method Details

    • getValue

      public double getValue()
      Gets the value of the property value.
      Specified by:
      getValue in interface ValueItem
      Property description:
    • setValue

      public void setValue(double VALUE)
      Sets the value of the property value.
      Specified by:
      setValue in interface ValueItem
      Property description:
    • valueProperty

      public javafx.beans.property.DoubleProperty valueProperty()
      Specified by:
      valueProperty in interface ValueItem
      See Also:
    • getName

      public String getName()
      Gets the value of the property name.
      Specified by:
      getName in interface Item
      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.
      Specified by:
      getFill in interface Item
      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.
      Specified by:
      getStroke in interface Item
      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:
    • getSymbol

      public Symbol getSymbol()
      Gets the value of the property symbol.
      Specified by:
      getSymbol in interface Item
      Property description:
    • setSymbol

      public void setSymbol(Symbol SYMBOL)
      Sets the value of the property symbol.
      Specified by:
      setSymbol in interface Item
      Property description:
    • symbolProperty

      public javafx.beans.property.ObjectProperty<Symbol> symbolProperty()
      See Also:
    • isEmptyItem

      public boolean isEmptyItem()
      Specified by:
      isEmptyItem in interface Item
    • setIsEmpty

      public void setIsEmpty(boolean isEmpty)
    • isEmptyProperty

      public javafx.beans.property.BooleanProperty isEmptyProperty()
    • addChartEvtObserver

      public void addChartEvtObserver(eu.hansolo.toolbox.evt.EvtType type, eu.hansolo.toolbox.evt.EvtObserver<ChartEvt> observer)
    • removeChartEvtObserver

      public void removeChartEvtObserver(eu.hansolo.toolbox.evt.EvtType type, eu.hansolo.toolbox.evt.EvtObserver<ChartEvt> observer)
    • removeAllChartEvtObservers

      public void removeAllChartEvtObservers()
    • fireChartEvt

      public void fireChartEvt(ChartEvt evt)
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • compareTo

      public int compareTo(ValueChartItem ITEM)
      Specified by:
      compareTo in interface Comparable<ValueChartItem>