MenstrualBodyTemperatureGraph constructor

const MenstrualBodyTemperatureGraph({
  1. Key? key,
  2. BodyTemperatureUnits? bodyTemperatureUnits = BodyTemperatureUnits.celsius,
  3. bool isShowMoreOptions = false,
  4. String? loadingText,
  5. bool isShowXAxisTitle = true,
  6. bool isShowYAxisTitle = true,
  7. Color tooltipBackgroundColor = Colors.black,
  8. String? yAxisTitle,
  9. Function? onImageDownloadCallback,
  10. Color topGraphColor = Colors.red,
  11. Color centerGraphColor = Colors.orange,
  12. Color bottomGraphColor = Colors.yellow,
  13. String? xAxisTitle,
  14. TextStyle? xAxisTitleTextStyle,
  15. TextStyle? yAxisTitleTextStyle,
  16. Function? onPdfDownloadCallback,
})

Implementation

const MenstrualBodyTemperatureGraph(
    {super.key,
    this.bodyTemperatureUnits = BodyTemperatureUnits.celsius,
    this.isShowMoreOptions = false,
    this.loadingText,
    this.isShowXAxisTitle = true,
    this.isShowYAxisTitle = true,
    this.tooltipBackgroundColor = Colors.black,
    this.yAxisTitle,
    this.onImageDownloadCallback,
    this.topGraphColor = Colors.red,
    this.centerGraphColor = Colors.orange,
    this.bottomGraphColor = Colors.yellow,
    this.xAxisTitle,
    this.xAxisTitleTextStyle,
    this.yAxisTitleTextStyle,
    this.onPdfDownloadCallback});