XYChartScope constructor

const XYChartScope({
  1. Key? key,
  2. required LinearScale xScale,
  3. required LinearScale yScale,
  4. required double chartWidth,
  5. required double chartHeight,
  6. required Widget child,
})

Implementation

const XYChartScope({
  super.key,
  required this.xScale,
  required this.yScale,
  required this.chartWidth,
  required this.chartHeight,
  required super.child,
});