-
public interface ChartValuesWhere Charts get their data from.
By default, minX, maxX, minY, and maxY are equal to ChartEntryModel.minX, ChartEntryModel.maxX, ChartEntryModel.minY, and ChartEntryModel.maxY, respectively, but you can use AxisValuesOverrider to override these values.
-
-
Method Summary
Modifier and Type Method Description IntegergetMaxMajorEntryCount()Returns the maximum number of major entries that can be present, based on minX, maxX, and xStep. abstract FloatgetMinX()The minimum value displayed on the x-axis. abstract FloatgetMaxX()The maximum value displayed on the x-axis. abstract FloatgetXStep()The difference between the x values of neighboring major entries. FloatgetStepX()abstract FloatgetMinY()The minimum value displayed on the y-axis. abstract FloatgetMaxY()The maximum value displayed on the y-axis. abstract ChartEntryModelgetChartEntryModel()The source of the associated Chart’s entries. FloatgetLengthX()FloatgetLengthY()-
-
Method Detail
-
getMaxMajorEntryCount
Integer getMaxMajorEntryCount()
Returns the maximum number of major entries that can be present, based on minX, maxX, and xStep.
-
getMinX
abstract Float getMinX()
The minimum value displayed on the x-axis. By default, this is equal to ChartEntryModel.minX (the ChartEntryModel instance being chartEntryModel), but you can use AxisValuesOverrider to override this value.
-
getMaxX
abstract Float getMaxX()
The maximum value displayed on the x-axis. By default, this is equal to ChartEntryModel.maxX (the ChartEntryModel instance being chartEntryModel), but you can use AxisValuesOverrider to override this value.
-
getXStep
abstract Float getXStep()
The difference between the x values of neighboring major entries.
-
getMinY
abstract Float getMinY()
The minimum value displayed on the y-axis. By default, this is equal to ChartEntryModel.minY (the ChartEntryModel instance being chartEntryModel), but you can use AxisValuesOverrider to override this value.
-
getMaxY
abstract Float getMaxY()
The maximum value displayed on the y-axis. By default, this is equal to ChartEntryModel.maxY (the ChartEntryModel instance being chartEntryModel), but you can use AxisValuesOverrider to override this value.
-
getChartEntryModel
abstract ChartEntryModel getChartEntryModel()
The source of the associated Chart’s entries. The ChartEntryModel defines the default values for minX, maxX, minY, and maxY.
-
getLengthX
Float getLengthX()
-
getLengthY
Float getLengthY()
-
-
-
-