XYChartScope constructor
const
XYChartScope({
- Key? key,
- required LinearScale xScale,
- required LinearScale yScale,
- required double chartWidth,
- required double chartHeight,
- required Widget child,
Implementation
const XYChartScope({
super.key,
required this.xScale,
required this.yScale,
required this.chartWidth,
required this.chartHeight,
required super.child,
});