Package 

Interface ChartEntryModel

    • Method Summary

      Modifier and Type Method Description
      Integer getId()
      abstract List<List<ChartEntry>> getEntries() The chart entries (ChartEntry instances).
      abstract Float getMinX() The minimum x-axis value from among all entries.
      abstract Float getMaxX() The maximum x-axis value from among all entries.
      abstract Float getMinY() The minimum y-axis value from among all entries.
      abstract Float getMaxY() The maximum y-axis value from among all entries.
      abstract Float getStackedPositiveY() The maximum cumulated y-axis value from among all sets of entries associated by ChartEntry.x.
      abstract Float getStackedNegativeY() The minimum cumulated y-axis value from among all sets of entries associated by ChartEntry.x.
      abstract Float getXGcd() The greatest common divisor of the x values.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getMinX

         abstract Float getMinX()

        The minimum x-axis value from among all entries.

      • getMaxX

         abstract Float getMaxX()

        The maximum x-axis value from among all entries.

      • getMinY

         abstract Float getMinY()

        The minimum y-axis value from among all entries.

      • getMaxY

         abstract Float getMaxY()

        The maximum y-axis value from among all entries.

      • getStackedPositiveY

         abstract Float getStackedPositiveY()

        The maximum cumulated y-axis value from among all sets of entries associated by ChartEntry.x.

      • getStackedNegativeY

         abstract Float getStackedNegativeY()

        The minimum cumulated y-axis value from among all sets of entries associated by ChartEntry.x.

      • getXGcd

         abstract Float getXGcd()

        The greatest common divisor of the x values.