How to draw a Pie Chart in Flutter

This Article is posted by abbas.devcode at 3/12/2020 1:27:59 PM




In this tutorial, we are going to see how to draw a pie chart in a flutter app.

We are going to use pie_chart package to accomplish this task. The following illustration shows how our app will look after this tutorial.



Step 1: Add the package dependency to your pubspec.yaml file.
dependencies:
flutter:
sdk: flutter
pie_chart: ^3.1.1

Step 2: Use the following code in your main.dart file. After the code, I've outlined a few points after the code.
import 'package:flutter/material.dart';
import 'package:pie_chart/pie_chart.dart'; // import the package

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Pie Chart Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Pie Chart Demo'),
);
}
}

class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;

@override
_MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
Map<String, double> data = new Map();
bool _loadChart = false;
@override
void initState() {
data.addAll({
'Flutter': 37136,
'React Native': 69687,
'Xamarin': 40609,
'Ionic': 42544
});
super.initState();
}

List<Color> _colors = [
Colors.teal,
Colors.blueAccent,
Colors.amberAccent,
Colors.redAccent
];

@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
children: <Widget>[
SizedBox(
height: 50,
),
Text(
'Number of Questions asked on StackOverflow',
textAlign: TextAlign.center,
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
),
SizedBox(
height: 50,
),
_loadChart ? PieChart(
dataMap: data,
colorList:
_colors, // if not declared, random colors will be chosen
animationDuration: Duration(milliseconds: 1500),
chartLegendSpacing: 32.0,
chartRadius: MediaQuery.of(context).size.width /
2.7, //determines the size of the chart
showChartValuesInPercentage: true,
showChartValues: true,
showChartValuesOutside: false,
chartValueBackgroundColor: Colors.grey[200],
showLegends: true,
legendPosition:
LegendPosition.right, //can be changed to top, left, bottom
decimalPlaces: 1,
showChartValueLabel: true,
initialAngle: 0,
chartValueStyle: defaultChartValueStyle.copyWith(
color: Colors.blueGrey[900].withOpacity(0.9),
),
chartType: ChartType.disc, //can be changed to ChartType.ring
) : SizedBox(
height: 150,
),
SizedBox(
height: 50,
),
RaisedButton(
color: Colors.blue,
child: Text('Click to Show Chart', style: TextStyle(
color: Colors.white
),),
onPressed: () {
setState(() {
_loadChart = true;
});
},

),
],
),
),
);
}
}

Quick Overview:
1. The PieChart widget takes input data for the pie chart as a Map of String keys and double values. We declare a map and assign values to it inside the initState() method.
2. PieChart provides a smooth animation out of the box. To depict it more clearly, I have used a RaisedButton(). When _loadChart is true, the PieChart is displayed else a SizedBox is displayed. On pressing the button, the boolean value _loadChart is set to true and MyHomePage widget is rebuilt, finally showing up our PieChart on screen.

Hope you liked it :)

Leave a comment below if you need any help.

Thank You!


Tags: pie chart, pie chart in flutter








0 Comments
Login to comment.
Recent Comments

Be the first to Comment. You can ask a Query or Share your toughts or Just say thanks.


© 2018 - Fluttercentral | Email to me - seven.srikanth@gmail.com