bubble_chart

Creator: coderz1093

Last updated:

Add to Cart

Description:

bubble chart

Bubble chart #

A simple Dart implementation of bubble chart.






Usage #
Add bubble_chart to your pubspec:
dependencies:
bubble_chart: any # or the latest version on Pub
copied to clipboard
Add in you project.
final bubbles = BubbleNode.node(
padding: 15,
children: [
BubbleNode.node(
padding: 30,
children: [
BubbleNode.leaf(
options: BubbleOptions(
color: Colors.brown,
),
value: 2583,
),
BubbleNode.leaf(
options: BubbleOptions(
color: Colors.brown,
),
value: 4159,
),
BubbleNode.leaf(
options: BubbleOptions(
color: Colors.brown,
),
value: 4159,
),
],
),
BubbleNode.leaf(
value: 4159,
),
BubbleNode.leaf(
value: 2074,
),
BubbleNode.leaf(
value: 4319,
),
BubbleNode.leaf(
value: 2074,
),
BubbleNode.leaf(
value: 2074,
),
BubbleNode.leaf(
value: 2074,
),
BubbleNode.leaf(
value: 2074,
),
],
);

Widget build(BuildContext context) {
return Scaffold(
body: BubbleChartLayout(
root: bubbles,
),
);
}
copied to clipboard
Run the example #
See the example/ folder for a working example app.
Supporting Me #
A donation through my Ko-Fi page would be infinitly appriciated:

but, if you can't or won't, a star on GitHub and a like on pub.dev would also go a long way!
Every donation gives me fuel to continue my open-source projects and lets me know that I'm doing a good job.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.