TenunInteractionLayer constructor

const TenunInteractionLayer({
  1. Key? key,
  2. required Widget child,
  3. ChartController? controller,
  4. ChartTapCallback? onTap,
  5. ChartCrosshairCallback? onCrosshairMove,
  6. String? semanticsLabel,
  7. bool enableRtl = true,
  8. bool showCrosshair = true,
})

Implementation

const TenunInteractionLayer({
  super.key,
  required this.child,
  this.controller,
  this.onTap,
  this.onCrosshairMove,
  this.semanticsLabel,
  this.enableRtl = true,
  this.showCrosshair = true,
});