c3

Creator: coderz1093

Last updated:

0 purchases

c3 Image
c3 Images

Languages

Categories

Add to Cart

Description:

c3

A generated Dart API for C3.js
using pkg/js and
dart_js_facade_gen.
Example #
import "dart:html";
import "package:c3/c3.dart" as c3;

main() async {
await c3.load();

final container = document.querySelector("#chart");

final data = new c3.Data()
..columns = [
['data1', 30, 200, 100, 400, 150, 250],
['data2', 50, 20, 10, 40, 15, 25]
];

final configuration = new c3.ChartConfiguration()
..bindto = container
..data = data;

final chart = c3.generate(configuration);
}
copied to clipboard

License

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

Files In This Product:

Customer Reviews

There are no reviews.