Interface MatrixItem

All Superinterfaces:
Item
All Known Implementing Classes:
MatrixChartItem

public interface MatrixItem extends Item
  • Property Summary

    Properties
    Type
    Property
    Description
    javafx.beans.property.IntegerProperty
     
    javafx.beans.property.IntegerProperty
     
    javafx.beans.property.DoubleProperty
     
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Gets the value of the property x.
    int
    Gets the value of the property y.
    double
    Gets the value of the property z.
    void
    setX(int x)
    Sets the value of the property x.
    void
    setY(int y)
    Sets the value of the property y.
    void
    setZ(double value)
    Sets the value of the property z.
    javafx.beans.property.IntegerProperty
     
    javafx.beans.property.IntegerProperty
     
    javafx.beans.property.DoubleProperty
     

    Methods inherited from interface eu.hansolo.fx.charts.data.Item

    getFill, getName, getStroke, getSymbol, isEmptyItem, setSymbol
  • Property Details

  • Method Details

    • getX

      int getX()
      Gets the value of the property x.
      Property description:
    • setX

      void setX(int x)
      Sets the value of the property x.
      Property description:
    • xProperty

      javafx.beans.property.IntegerProperty xProperty()
      See Also:
    • getY

      int getY()
      Gets the value of the property y.
      Property description:
    • setY

      void setY(int y)
      Sets the value of the property y.
      Property description:
    • yProperty

      javafx.beans.property.IntegerProperty yProperty()
      See Also:
    • getZ

      double getZ()
      Gets the value of the property z.
      Property description:
    • setZ

      void setZ(double value)
      Sets the value of the property z.
      Property description:
    • zProperty

      javafx.beans.property.DoubleProperty zProperty()
      See Also: