wednesday-solutions / chart_it

A customisable and seamlessly animated charts library for flutter

Home Page:https://wednesday.is/building-products

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Chart It

wednesday pub version pub likes pub points license

Chart_It is a fully written in dart, strongly customizable and seamlessly animated Collection of Charts.

barcharts piecharts
Learn More Learn More

Installation

Add the chart_it package to your project's pubspec.yaml file:

dependencies:
  chart_it: ^0.2.2

Alternatively, you can also run the following command in your Flutter Project:

$ flutter pub add chart_it

Documentation

Check out the complete documentation here.

Supported Charts

All Charts in chart_it are categorized in two:

  1. Cartesian Charts
    • Bar Chart
    • Multi-Bar Chart
  2. Radial Charts
    • Pie Chart
    • Donut Chart

Pick a Chart Widget for the type of Chart you want to draw and provide the necessary data for them.

Quick Examples:

  1. Bar Charts
    ...
    import 'package:chart_it/chart_it.dart';
    
    ...
    child: BarChart(
      maxYValue: 50,
      data: BarSeries(  
        barData: <BarGroup>[
          SimpleBar(  
            xValue: 10,  
            label: (value) => 'Group 1',  
            yValue: const BarData(yValue: 25),  
          ),  
          SimpleBar(  
            xValue: 6,  
            label: (value) => 'Group 1',  
            yValue: const BarData(yValue: 12),  
          ),  
          SimpleBar(  
            xValue: 19,  
            label: (value) => 'Group 1',  
            yValue: const BarData(yValue: 38),  
          ),
        ],  
      ),
    ),
    For Advanced usecases, Check out our Docs here.
  2. Donut Charts
    ...
    import 'package:chart_it/chart_it.dart';
    
    ...
    child: PieChart(
      data: PieSeries(
        donutRadius: 50.0,  
        donutSpaceColor: Colors.white,  
        donutLabel: () => 'Market Shares',
        slices: <SliceData>[
          SliceData(  
            style: const SliceDataStyle(radius: 105.0, color: Colors.red),  
            label: (percent, value) => 'Tesla',  
            value: 34,  
          ),
          SliceData(  
            style: const SliceDataStyle(radius: 90.0, color: Colors.blueGrey),  
            label: (percent, value) => 'Space X',  
            value: 18,  
          ),
          SliceData(  
            style: const SliceDataStyle(radius: 90.0, color: Colors.green),  
            label: (percent, value) => 'Google',  
            value: 42,  
          ),  
          SliceData(  
            style: const SliceDataStyle(radius: 90.0, color: Colors.cyanAccent),  
            label: (percent, value) => 'Microsoft',  
            value: 57,  
          ),
        ],
      ),
    ),
    For Advanced usecases, Check out our Docs here.

The default animation behaviour for Chart Widgets is it:

  • animates when the widget loads for the first time.
  • animates for every new data updates.

You can override this behaviour using the animateOnLoad and animateOnUpdate properties at top level widget.

...
import 'package:chart_it/chart_it.dart';
	
...
child: BarChart(
  animateOnLoad: false,
  animateOnUpdate: true,
  animationDuration: const Duration(milliseconds: 750),
  data: BarSeries(
  ...

All animations in the widget are handled internally. However, if you wish to control your own animation, then you can provide your own custom AnimationController to the top level property animation.

...
import 'package:chart_it/chart_it.dart';
	
...
child: BarChart(
  animation: AnimationController(
    duration: Duration(milliseconds: 500),
    vsync: this, 
  ),
  data: BarSeries(
  ...

Interactions

Check out the Interactions Guide to learn more about interaction with chart_it.

License

Flutter Charts is licensed under the BSD-3-Clause license. Check the LICENSE file for details.

About

A customisable and seamlessly animated charts library for flutter

https://wednesday.is/building-products

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Dart 82.2%Language:C++ 8.0%Language:CMake 6.9%Language:Ruby 1.0%Language:HTML 0.9%Language:C 0.5%Language:Swift 0.5%Language:Kotlin 0.0%Language:Objective-C 0.0%