plotly 0.7.3 copy "plotly: ^0.7.3" to clipboard
plotly: ^0.7.3 copied to clipboard

Dart 1 only

Interactive, browser-based charting library

plotly.dart #

A Dart interface to plotly.js, plotly.dart is a high-level, declarative charting library.

Usage #

var trace = {
  'x': [1, 2, 3, 4],
  'y': [10, 15, 13, 17],
  'mode': 'markers'
};

var layout = {
  'title': 'Scatter Plot',
  'height': 800,
  'width': 960
};

new plotly.Plot.id('myDiv', [trace], layout);
0
likes
15
pub points
46%
popularity

Publisher

unverified uploader

Interactive, browser-based charting library

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

More

Packages that depend on plotly