ChartLine constructor

const ChartLine({
  1. Key? key,
  2. required Size size,
  3. required List<ChartBeanSystem> chartBeanSystems,
  4. Color? backgroundColor,
  5. BaseBean? baseBean,
  6. double bothEndPitchX = 0,
  7. List<DialStyleX>? xDialValues,
  8. List<SectionBean>? xSectionBeans,
  9. List<SectionBeanY>? ySectionBeans,
  10. LineTouchSet? touchSet,
  11. VoidCallback? paintEnd,
  12. bool touchEnableNormalselect = true,
  13. GestureScaleStartCallback? onScaleStart,
  14. GestureScaleUpdateCallback? onScaleUpdate,
  15. GestureScaleEndCallback? onScaleEnd,
})

Implementation

const ChartLine({
  Key? key,
  required this.size,
  required this.chartBeanSystems,
  this.backgroundColor,
  this.baseBean,
  this.bothEndPitchX = 0,
  this.xDialValues,
  this.xSectionBeans,
  this.ySectionBeans,
  this.touchSet,
  this.paintEnd,
  this.touchEnableNormalselect = true,
  this.onScaleStart,
  this.onScaleUpdate,
  this.onScaleEnd,
}) : super(key: key);