Ahsin Irshad
Senior Flutter Developer | Ex. Native Android Developer
© 2023 All rights reserved.
Tag Archives: irshad
Explore Line Chart In Flutter. Learn how to create an interactive Line… | Feb, 2024
To utilize LineChart , you need to call the constructor underneath: const LineChart( this.data, { this.chartRendererKey, super.key, super.duration = const Duration(milliseconds: 150), super.curve = Curves.linear, }); In LineChart we will use the LineChartData constructor on the data field: LineChartData({ this.lineBarsData = const [], this.betweenBarsData = const [], super.titlesData = const FlTitlesData(), super.extraLinesData = const ExtraLinesData(),…