MutableChartValues
An implementation of ChartValues whose every property is mutable.
Properties
The source of the associated Chart’s entries. The ChartEntryModel defines the default values for minX, maxX, minY, and maxY.
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.
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.
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.
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.
Functions
Creates and returns an immutable copy of this MutableChartValues instance.
Attempts to update the stored values to the provided values. MutableChartValues.minX and MutableChartValues.minY can be updated to a lower value. MutableChartValues.maxX and MutableChartValues.maxY can be updated to a higher value. MutableChartValues.chartEntryModel and MutableChartValues.xStep are always updated.