MenstrualMeditationGraph constructor

const MenstrualMeditationGraph({
  1. Key? key,
  2. bool isShowMoreOptions = false,
  3. String? loadingText,
  4. bool isShowXAxisTitle = true,
  5. bool isShowYAxisTitle = true,
  6. Color tooltipBackgroundColor = Colors.black,
  7. String? yAxisTitle,
  8. Function? onImageDownloadCallback,
  9. String? xAxisTitle,
  10. Color graphColor = Colors.blue,
  11. TextStyle? xAxisTitleTextStyle,
  12. TextStyle? yAxisTitleTextStyle,
  13. Function? onPdfDownloadCallback,
})

Implementation

const MenstrualMeditationGraph(
    {super.key,
    this.isShowMoreOptions = false,
    this.loadingText,
    this.isShowXAxisTitle = true,
    this.isShowYAxisTitle = true,
    this.tooltipBackgroundColor = Colors.black,
    this.yAxisTitle,
    this.onImageDownloadCallback,
    this.xAxisTitle,
    this.graphColor = Colors.blue,
    this.xAxisTitleTextStyle,
    this.yAxisTitleTextStyle,
    this.onPdfDownloadCallback});