Open dodocube opened 5 months ago
Describe the bug End of the line literally looks weird (not really being connected). Looks fine when [isCurved] is true, only happens when it's false.
To Reproduce `import 'package:fl_chart/fl_chart.dart'; import 'package:flutter/material.dart';
void main() async { return runApp( MaterialApp( home: Scaffold( body: Center( child: AspectRatio( aspectRatio: 2, child: LineChart( LineChartData( lineBarsData: [ LineChartBarData( spots: [ FlSpot(1, 1), FlSpot(2, 2), FlSpot(3, 1), FlSpot(4, 2), FlSpot(5, 1), ], isCurved: false, curveSmoothness: 0.15, preventCurveOverShooting: true, dotData: FlDotData( show: false, ), ), ], ), ), ), ), ), ), ); }`
Screenshots
Versions
Duplicate of #1690, It is an Impeller issue, the other issue mentions a workaround.
Describe the bug End of the line literally looks weird (not really being connected). Looks fine when [isCurved] is true, only happens when it's false.
To Reproduce `import 'package:fl_chart/fl_chart.dart'; import 'package:flutter/material.dart';
void main() async { return runApp( MaterialApp( home: Scaffold( body: Center( child: AspectRatio( aspectRatio: 2, child: LineChart( LineChartData( lineBarsData: [ LineChartBarData( spots: [ FlSpot(1, 1), FlSpot(2, 2), FlSpot(3, 1), FlSpot(4, 2), FlSpot(5, 1), ], isCurved: false, curveSmoothness: 0.15, preventCurveOverShooting: true, dotData: FlDotData( show: false, ), ), ], ), ), ), ), ), ), ); }`
Screenshots
Versions