ChartTooltip constructor

ChartTooltip({
  1. bool show = true,
  2. TooltipTrigger? trigger = TooltipTrigger.item,
  3. AxisPointer? axisPointer,
  4. String? formatter,
  5. double? showDelay,
  6. double? hideDelay,
  7. double? transitionDuration,
  8. bool? enterable,
  9. bool? confine,
  10. TooltipRenderMode? renderMode = TooltipRenderMode.html,
  11. String? backgroundColor,
  12. String? borderColor,
  13. double? borderWidth,
  14. double? borderRadius,
  15. double? padding,
  16. ChartTextStyle? textStyle,
  17. String? extraCssText,
  18. bool numberFormat = false,
  19. String textColor = 'black',
  20. int? precision,
  21. double? fontSize,
})

Implementation

ChartTooltip({
  this.show = true,
  this.trigger = TooltipTrigger.item,
  this.axisPointer,
  this.formatter,
  this.showDelay,
  this.hideDelay,
  this.transitionDuration,
  this.enterable,
  this.confine,
  this.renderMode = TooltipRenderMode.html,
  this.backgroundColor,
  this.borderColor,
  this.borderWidth,
  this.borderRadius,
  this.padding,
  this.textStyle,
  this.extraCssText,
  this.numberFormat = false,
  this.textColor = 'black',
  this.precision,
  this.fontSize,
});