Questions tagged [fl-chart]

fl-chart is a powerful Flutter chart library, currently supporting Line Chart, Bar Chart and Pie Chart.

FL Chart is a library to draw charts in Flutter.

It's used to create Line Charts, Bar Charts, Pie Charts, Scatter Charts and many more.

Here you can find examples on GitHub.

95 questions
0
votes
3 answers

Class 'int' has no instance method 'call' ERROR FLUTTER

_generatePieChartSectionData(recievedData) { print(recievedData); int len = recievedData.length(); for (int i = 0; i < len; i++) { _pieChartdata.add(charts.PieChartSectionData( color: Color(int.parse(recievedData[i].color)), …
HTibs
  • 63
  • 1
  • 10
-1
votes
0 answers

Fl_Charts - DIsplaying tooltip indicator on multiple line charts simultaneously

I want to create a ListView with several charts displaying different sets of data, the main case is to make them work so that If I click on one of the charts the touch indicator is shown on all currently visible charts at the same spot on X axis.…
Kresh
  • 1
  • 3
-1
votes
1 answer

Flutter - Disabling scroll while interacting with the chart

I have a dashboard containing ListView - fl_chart - Column: List I would like to prevent user to scroll down the page while interacting with the chart. How to do so?
Yoann Picquenot
  • 640
  • 10
  • 26
-2
votes
0 answers

How to draw a Multi Coloured Line Chart in FLutter

In Flutter, is there any possibility to change the color of the Line Chart or Below Line Chart based on some thresholds? I tried using the Flutter Package fl_chart: ^0.63.0, but unfortunately the color of chart is sold and cant have multiple colors…
1 2 3 4 5 6
7