Class CandleChartItem

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

public class CandleChartItem extends ChartItem
  • Property Details

  • Constructor Details

    • CandleChartItem

      public CandleChartItem()
    • CandleChartItem

      public CandleChartItem(String name, String unit, String description, double low, double open, double close, double high, ZonedDateTime timestamp)
    • CandleChartItem

      public CandleChartItem(String name, String unit, String description, double low, double open, double close, double high, Instant timestamp)
    • CandleChartItem

      public CandleChartItem(String name, String unit, String description, double low, double open, double close, double high, Instant timestamp, Instant openTimestamp, Instant closeTimestamp)
  • Method Details

    • getHigh

      public double getHigh()
      Gets the value of the property high.
      Property description:
    • setHigh

      public void setHigh(double high)
      Sets the value of the property high.
      Property description:
    • highProperty

      public javafx.beans.property.DoubleProperty highProperty()
      See Also:
    • getLow

      public double getLow()
      Gets the value of the property low.
      Property description:
    • setLow

      public void setLow(double low)
      Sets the value of the property low.
      Property description:
    • lowProperty

      public javafx.beans.property.DoubleProperty lowProperty()
      See Also:
    • getOpen

      public double getOpen()
      Gets the value of the property open.
      Property description:
    • setOpen

      public void setOpen(double open)
      Sets the value of the property open.
      Property description:
    • openProperty

      public javafx.beans.property.DoubleProperty openProperty()
      See Also:
    • getClose

      public double getClose()
      Gets the value of the property close.
      Property description:
    • setClose

      public void setClose(double close)
      Sets the value of the property close.
      Property description:
    • closeProperty

      public javafx.beans.property.DoubleProperty closeProperty()
      See Also:
    • getOpenTimestamp

      public Instant getOpenTimestamp()
      Gets the value of the property openTimestamp.
      Property description:
    • setOpenTimestamp

      public void setOpenTimestamp(long openTimestampEpochSecond)
      Sets the value of the property openTimestamp.
      Property description:
    • setOpenTimestamp

      public void setOpenTimestamp(Instant openTimestamp)
    • openTimestampProperty

      public javafx.beans.property.ObjectProperty<Instant> openTimestampProperty()
      See Also:
    • getCloseTimestamp

      public Instant getCloseTimestamp()
      Gets the value of the property closeTimestamp.
      Property description:
    • setCloseTimestamp

      public void setCloseTimestamp(long closeTimestampEpochSecond)
      Sets the value of the property closeTimestamp.
      Property description:
    • setCloseTimestamp

      public void setCloseTimestamp(Instant closeTimestamp)
    • closeTimestampProperty

      public javafx.beans.property.ObjectProperty<Instant> closeTimestampProperty()
      See Also:
    • validate

      public void validate()
    • toString

      public String toString()
      Overrides:
      toString in class ChartItem