FluentAnnotationOnlyChart constructor

const FluentAnnotationOnlyChart({
  1. Key? key,
  2. required List<FluentChartAnnotation> annotations,
  3. String? chartTitle,
  4. String? description,
  5. double? width,
  6. double? height,
  7. Color? paperBackgroundColor,
  8. Color? plotBackgroundColor,
  9. Color? fontColor,
  10. String? fontFamily,
  11. FluentChartMargins? margin,
  12. FluentAnnotationOnlyChartStyle? style,
})

Creates an annotation-only chart.

Implementation

const FluentAnnotationOnlyChart({
  super.key,
  required this.annotations,
  this.chartTitle,
  this.description,
  this.width,
  this.height,
  this.paperBackgroundColor,
  this.plotBackgroundColor,
  this.fontColor,
  this.fontFamily,
  this.margin,
  this.style,
});