Getting Started with Syncfusion Flutter Charts

This section explains the steps required to populate the chart with data, title, data labels, legend, and tooltips. This section covers only the minimal features needed to know to get started with the chart.

To get start quickly with our Flutter chart widget, you can check on this video.

Add Flutter Charts to an application

Create a simple project using the instructions given in the Getting Started with your first Flutter app documentation.

Add dependency

Add the Syncfusion Flutter Chart dependency to your pub spec file.

  • dart
  • dependencies:
    
        syncfusion_flutter_charts: ^1.0.0-beta.3

    Get packages

    Run the following command to get the required packages.

  • dart
  • $ flutter pub get

    Import package

    Import the following package in your Dart code.

  • dart
  • import 'package:syncfusion_flutter_charts/charts.dart';

    Initialize chart

    Once the package has been imported, initialize the chart as a child of any widget. SfPyramidChart can be used to render pyramid charts. Here, as we are rendering pyramid chart, initialize SfPyramidChart widget as a child of Container widget.

  • dart
  • @override
        Widget build(BuildContext context) {
            return Scaffold(
                body: Center(
                    child: Container(
                        //Initialize chart
                        child: SfPyramidChart()
                    )
                )
            );
        }

    Initialize chart

    Bind data source

    Based on your data, initialize the series type. In the series, you need to map the data source and the fields for x and y data points. Here, pyramid series is rendered that is demonstrated in the following code snippet.

  • dart
  • @override
        Widget build(BuildContext context) {
            final List<ChartData> chartData = [
                ChartData('David', 25),
                ChartData('Steve', 38),
                ChartData('Jack', 34),
                ChartData('Others', 52)
            ];
            return Scaffold(
                body: Center(
                    child: Container(
                        child: SfPyramidChart(
                          series:PyramidSeries<ChartData, String>(
                                dataSource: chartData,
                                xValueMapper: (ChartData data, _) => data.x,
                                yValueMapper: (ChartData data, _) => data.y
                            )
                        )
                    )
                )
            );
        }
    
        class ChartData {
          ChartData(this.x, this.y, [this.color]);
            final String x;
            final double y;
            final Color color;
        }

    Bind data source

    Add title

    You can add a title to the chart to provide quick information to users about the data plotted in the chart. The title to chart can be set as demonstrated in the following code snippet.

  • dart
  • @override
        Widget build(BuildContext context) {
            return Scaffold(
                body: Center(
                    child: Container(
                        child: SfPyramidChart(
                          // Chart title text
                          title: ChartTitle(text: 'Half yearly sales analysis'),
                          series:PyramidSeries<ChartData, String>(
                                dataSource: chartData,
                                xValueMapper: (ChartData data, _) => data.x,
                                yValueMapper: (ChartData data, _) => data.y
                            )
                        )
                    )
                )
            );
        }

    Title to chart

    Enable data labels

    You can add data labels to improve the readability of the chart using the dataLabelSettings property.

  • dart
  • @override
        Widget build(BuildContext context) {
            return Scaffold(
                body: Center(
                    child: Container(
                        child: SfPyramidChart(
                          series:PyramidSeries<ChartData, String>(
                                dataSource: chartData,
                                xValueMapper: (ChartData data, _) => data.x,
                                yValueMapper: (ChartData data, _) => data.y,
                                // Render the data label
                                dataLabelSettings:DataLabelSettings(isVisible : true)
                            )
                        )
                    )
                )
            );
        }

    DataLabel to chart

    Enable legend

    The legend provides information about the series rendered in the chart.

    You can use legend in chart by setting the isVisible property to true in SfPyramidChart.legend.

  • dart
  • @override
        Widget build(BuildContext context) {
            return Scaffold(
                body: Center(
                    child: Container(
                        child: SfPyramidChart(
                          // Enables the legend
                          legend: Legend(isVisible: true), 
                          series:PyramidSeries<ChartData, String>(
                                dataSource: chartData,
                                xValueMapper: (ChartData data, _) => data.x,
                                yValueMapper: (ChartData data, _) => data.y,
                            )
                        )
                    )      
                )
            );
        }

    Legend in chart

    Enable tooltip

    The tooltip is used when you cannot display information using the data labels due to space constraints.

    The tooltipBehavior property in chart is used to enable and customize the tooltip for the pyramid series. The tooltip is enabled as demonstrated in the following code snippet.

  • dart
  • @override
        Widget build(BuildContext context) {
            return Scaffold(
                appBar: AppBar(
                    title: Text(widget.title),
                ),
                body: Center(
                    child: Container(
                        child: SfPyramidChart(
                          // Enables the tooltip for all the series in chart
                            tooltipBehavior: TooltipBehavior(enable: true),
                            series:PyramidSeries<ChartData, String>(
                                dataSource: chartData,
                                xValueMapper: (ChartData data, _) => data.x,
                                yValueMapper: (ChartData data, _) => data.y,
                            )
                        )
                    )
                )
            );
        }

    Tooltip in chart

    You can find the complete getting started sample from this link.