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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

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()),

    );

  }

}