d3 0.2.0 copy "d3: ^0.2.0" to clipboard
d3: ^0.2.0 copied to clipboard

Dart 1 only

Data Driven Documents

D3.dart #

A Dart API for D3.js using dart:js.

Usage #

var data = [4, 8, 15, 16, 23, 42];

var x = new LinearScale<num>()
  ..domain = [0, max(data)]
  ..range = [0, 420];

new Selection('.chart').selectAll('div').data(data).enter().append("div")
  ..styleFn["width"] = ((d) => "${x(d)}px")
  ..textFn = (d) => d;
0
likes
0
points
45
downloads

Publisher

unverified uploader

Weekly Downloads

Data Driven Documents

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on d3