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 :(
Asked
Active
Viewed 2,627 times
2
-
Have managed to solve your problem? I have a similar requirement.. – alex_z Apr 23 '20 at 23:31
-
nope, I am working on my own solution. If You interested, I create repo and we can work together on problem – Віталій Шимко Apr 28 '20 at 11:58
-
sure thing, I`m interested – alex_z Apr 28 '20 at 13:11
-
sorry, this is not my task anymore... – Віталій Шимко May 04 '20 at 07:36
1 Answers
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);
}

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