flutter_graph 0.0.1 copy "flutter_graph: ^0.0.1" to clipboard
flutter_graph: ^0.0.1 copied to clipboard

Flutter package to draw graphs.

Flutter Bar Chart #

Features #

The Flutter Bar Chart Plugin is a versatile and customizable tool for creating stunning bar charts in Flutter applications. With this plugin, developers can effortlessly visualize data and display it in an intuitive and visually appealing manner.

Key Features:

Customization: The plugin offers extensive customization options, allowing developers to tailor the appearance of the bar chart to suit their application's design requirements. Customize colors, labels, axes, and more with ease.

Platform Compatibility: Build bar charts that seamlessly integrate with both Android, iOS platforms, Mac, Linux, Web, providing a consistent user experience across devices.

Getting started #

TODO: List prerequisites and provide or point to information on how to start using the package.

Usage #

@override
Widget build(BuildContext context) {
  return Scaffold(
    appBar: AppBar(
      backgroundColor: Theme
          .of(context)
          .colorScheme
          .inversePrimary,
      title: Text(widget.title),
    ),
    body: Center(
        child: BarChartWidget(
          bars: const [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
          labels: [
            'L1',
            'L2',
            'L',
            'L',
            'L5',
            'L6',
            'L7',
            'g8',
            'g9',
            'g10'
          ],
          barColor: Colors.blueAccent,
          axisLineColor: Colors.red,
          barGap: 4.0,
          size: const Size(300, 400),
        )
    ),
  );
}

Additional information #

Contributions to the Flutter Bar Chart Plugin are welcome! Whether it's bug fixes, feature enhancements, or documentation improvements, we appreciate your help in making this plugin even better.

3
likes
120
points
21
downloads
screenshot

Publisher

verified publisherswapnil-techworks.blogspot.com

Weekly Downloads

Flutter package to draw graphs.

Homepage

Topics

#graph #chart #barchart

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_graph