dygraph 1.0.0 copy "dygraph: ^1.0.0" to clipboard
dygraph: ^1.0.0 copied to clipboard

Platformweb

Dart JS interop for Dygraph - fast, flexible open source JavaScript charting library.

example/example.dart

import 'dart:html';

import 'package:dygraph/dygraph.dart';

void main() {
  final el = document.getElementById('chart_container');

  final options = DygraphOptions(
    labels: ['Index', 'X', 'Y'],
    colors: ['blue', 'red'],
  );

  final data = [
    [1, 10, 100],
    [2, 20, 80],
    [3, 50, 60],
    [4, 70, 80],
  ];

  Dygraph(el, data, options);
}
3
likes
130
points
20
downloads

Publisher

unverified uploader

Weekly Downloads

Dart JS interop for Dygraph - fast, flexible open source JavaScript charting library.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

js

More

Packages that depend on dygraph