Welcome to the Flutter feedback portal. We’re happy you’re here! If you have feedback on how to improve the Flutter, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Infinite loop when empty series with DateTimeCategoryAxis. The same example works as expected when DateTimeAxis or CategoryAxis is used instead of DateTimeCategoryAxis.
Code to reproduce:
import 'package:flutter/material.dart';
import 'package:syncfusion_flutter_charts/charts.dart';
void main() => runApp(MaterialApp(home: MyHomePage()));
class MyHomePage extends StatelessWidget {
MyHomePage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Syncfusion Flutter chart')),
body: SfCartesianChart(primaryXAxis: DateTimeCategoryAxis()),
);
}
}