2

I need to implement Gantt chart similar to this https://www.primefaces.org/showcase/ui/data/timeline/custom.xhtml , but it seems there is no such chart in charts_flutter or any other similar library. I been looking for something similar in an any popular chart library but no luck :(

1 Answers1

2

Check the links..

class GanttChart extends StatelessWidget {
  final AnimationController animationController;
  final DateTime fromDate;
  final DateTime toDate;
  final List<Project> data;
  final List<User> usersInChart;

  int viewRange;
  int viewRangeToFitScreen = 6;
  Animation<double> width;

  GanttChart({
    this.animationController,
    this.fromDate,
    this.toDate,
    this.data,
    this.usersInChart,
  }) {
    viewRange = calculateNumberOfMonthsBetween(fromDate, toDate);
  }

Github Link

Medium article

Bilal Şimşek
  • 5,453
  • 2
  • 19
  • 33