ChartValuesOptions constructor

const ChartValuesOptions({
  1. bool showChartValueBackground = true,
  2. int decimalPlaces = 1,
  3. Color? chartValueBackgroundColor,
  4. bool showChartValuesInPercentage = false,
  5. TextStyle chartValueStyle = defaultChartValueStyle,
  6. bool showChartValues = true,
  7. bool showChartValuesOutside = false,
})

Implementation

const ChartValuesOptions({
  this.showChartValueBackground = true,
  this.decimalPlaces = 1,
  this.chartValueBackgroundColor,
  this.showChartValuesInPercentage = false,
  this.chartValueStyle = defaultChartValueStyle,
  this.showChartValues = true,
  this.showChartValuesOutside = false,
});