Giter Site home page Giter Site logo

ember-d3-helpers's People

Contributors

eguitarz avatar ember-tomster avatar guozhaonan avatar ivanvanderbyl avatar kturney avatar lolmaus avatar mrosenberg avatar patrickberkeley avatar spencer516 avatar taras avatar xomaczar avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

ember-d3-helpers's Issues

{{d3-graph}} should allow to pass a context selection

We need to be able to render nested selections. In which case, the d3-graph component should become tagName=''

For example, we need to be able to do this

{{#d3-graph as |selection|}}
  {{d3-graph selection (pipe ... )}}
  {{d3-graph selection (pipe ...)}}
{{/d3-graph}}

We need this before we can use this component in ember-sparkles.

//cc @ivanvanderbyl @zigahertz

After installing an addon to v3.0 app the app cant start

ember new some-name
cd some-name
ember install ember-d3-helpers
ember s

and we got

Path must be a string. Received undefined

Stack Trace and Error Report: /var/folders/4l/t0y8jm750tvdmsvg4j47tw2mkg83s2/T/error.dump.61a2575cce397ec3824ee36ffa52e0e0.log

`d3-join` does too much

d3-join accepts too many arguments. Handing enter, update, exit is enough. It doesn't need to also do selection and set data. I propose that we add a d3-data helper and use d3-select-all helper.

Instead of this:

{{shhh (compute (pipe
    (d3-select "svg")
    (d3-join "rect" data
      enter=(pipe
        (d3-append "rect")
        (d3-text (r/param))
      )
      update=(pipe
        (d3-text (r/param))
      )
      exit=(pipe
        (d3-remove)
      )
    )
  ))
}}

we would do this

{{shhh (compute (pipe
    (d3-select "svg")
    (d3-select-all "rect")
    (d3-data data)
    (d3-join
      enter=(pipe
        (d3-append "rect")
        (d3-text (r/param))
      )
      update=(pipe
        (d3-text (r/param))
      )
      exit=(pipe
        (d3-remove)
      )
    )
  ))
}}

This would make it easier to follow examples and it make it more composable.

What do you think?

/cc @zigahertz @spencer516 @ivanvanderbyl

Please try [email protected]

Hi guys, I've updated ember-cli-d3-shape to require D3 v4 directly, and will soon cut releases which are lock versioned with [email protected]. I've released a pre-release of this as it makes a lot of assumptions about the require mechanism, and will soon possibly support using d3 as a peerDependency so you can specify any version you like.

Please give it a try in this add-on and your app, and let me know if it loads etc.

Better error message when trying to build using npm@2

npm@2 is the default version of npm install all the way up to node v4, but it does not install dependencies in a flat tree; a behavior on which ember-d3-helpers has a hard dependency.

This means that when you do try and build using node <= 4.x, you get very cryptic errors as documented in #29

It would make it much nicer if you got a concise error message on ember install ember-d3-helpers that it will not work with the current version of npm and which versions it is known to be compatible with and instructions on where to start.

Dummy App fails to boot with a fresh install

Using a fresh clone of master and Using node 4.2.6, the dummy application issues compiler warnings and then fails to boot.

~/C/E/ember-d3-helpers git:master ❯❯❯ node -v
v4.2.3
~/C/E/ember-d3-helpers git:master ❯❯❯ npm -v
2.14.7
~/C/E/ember-d3-helpers git:master ❯❯❯ npm install
npm WARN peerDependencies The peer dependency ember-inflector@^1.9.4 included from ember-data will no
npm WARN peerDependencies longer be automatically installed to fulfill the peerDependency
npm WARN peerDependencies in npm 3+. Your application will need to depend on it explicitly.
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue

> [email protected] postinstall /Users/cowboyd/Code/Ember/ember-d3-helpers/node_modules/ember-cli/node_modules/inquirer/node_modules/external-editor/node_modules/spawn-sync
> node postinstall

[email protected] node_modules/ember-cli-inject-live-reload

[email protected] node_modules/loader.js

[email protected] node_modules/ember-cli-test-loader

[email protected] node_modules/ember-load-initializers

[email protected] node_modules/ember-disable-prototype-extensions

[email protected] node_modules/ember-export-application-global

[email protected] node_modules/ember-ajax

[email protected] node_modules/ember-reactive-helpers

[email protected] node_modules/ember-truth-helpers

[email protected] node_modules/ember-cli-app-version
└── [email protected] ([email protected])

[email protected] node_modules/ember-cli-github-pages
└── [email protected]

[email protected] node_modules/ember-resolver
└── [email protected] ([email protected])

[email protected] node_modules/ember-cli-dependency-checker
├── [email protected]
├── [email protected]
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])

[email protected] node_modules/ember-cli-htmlbars-inline-precompile
├── [email protected]
└── [email protected] ([email protected], [email protected])

[email protected] node_modules/ember-bootstrap
└── [email protected]

[email protected] node_modules/broccoli-asset-rev
├── [email protected]
├── [email protected] ([email protected])
├── [email protected]
├── [email protected] ([email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])

[email protected] node_modules/ember-cli-htmlbars
├── [email protected] ([email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])

[email protected] node_modules/d3
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected], [email protected], [email protected])
├── [email protected]
└── [email protected]

[email protected] node_modules/ember-d3
├── [email protected] ([email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])

[email protected] node_modules/ember-cli-sri
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])

[email protected] node_modules/ember-cli-uglify
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])

[email protected] node_modules/ember-composable-helpers
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])

[email protected] node_modules/ember-cli-release
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected])
├── [email protected]
└── [email protected] ([email protected])

[email protected] node_modules/ember-lodash
├── [email protected] ([email protected], [email protected], [email protected])
└── [email protected]

[email protected] node_modules/ember-cli-jshint
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected])

[email protected] node_modules/ember-sinon
├── [email protected] ([email protected], [email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected])

[email protected] node_modules/ember-cli-babel
├── [email protected]
├── [email protected] ([email protected])
├── [email protected]
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected])

[email protected] node_modules/ember-cli-qunit
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected])
├── [email protected]
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])

[email protected] node_modules/ember-inflector

[email protected] node_modules/ember-data
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected])

[email protected] node_modules/ember-cli
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected]
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected])
├── [email protected]
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected]
├── [email protected] ([email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected]
└── [email protected]
~/C/E/ember-d3-helpers git:master ❯❯❯ ember server

Missing bower packages:
Package: ember
  * Specified: ~2.9.0-beta.1
  * Installed: (not installed)

Package: ember-cli-shims
  * Specified: 0.1.3
  * Installed: (not installed)

Package: bootstrap
  * Specified: ~3.3.5
  * Installed: (not installed)

Run `bower install` to install missing dependencies.

~/C/E/ember-d3-helpers git:master ❯❯❯ bower install                                                                                                                                                       ⏎
bower ember-cli-shims#0.1.3     cached https://github.com/ember-cli/ember-cli-shims.git#0.1.3
bower ember-cli-shims#0.1.3   validate 0.1.3 against https://github.com/ember-cli/ember-cli-shims.git#0.1.3
bower bootstrap#~3.3.5          cached https://github.com/twbs/bootstrap.git#3.3.7
bower bootstrap#~3.3.5        validate 3.3.7 against https://github.com/twbs/bootstrap.git#~3.3.5
bower ember#~2.9.0-beta.1       cached https://github.com/components/ember.git#2.9.0
bower ember#~2.9.0-beta.1     validate 2.9.0 against https://github.com/components/ember.git#~2.9.0-beta.1
bower ember#>=1.4               cached https://github.com/components/ember.git#2.9.0
bower ember#>=1.4             validate 2.9.0 against https://github.com/components/ember.git#>=1.4
bower jquery#>= 1.7.0 < 4.0.0   cached https://github.com/jquery/jquery-dist.git#3.1.1
bower jquery#>= 1.7.0 < 4.0.0 validate 3.1.1 against https://github.com/jquery/jquery-dist.git#>= 1.7.0 < 4.0.0
bower ember-cli-shims#0.1.3    install ember-cli-shims#0.1.3
bower ember#~2.9.0-beta.1      install ember#2.9.0
bower bootstrap#~3.3.5         install bootstrap#3.3.7
bower jquery#>= 1.7.0 < 4.0.0  install jquery#3.1.1

ember-cli-shims#0.1.3 bower_components/ember-cli-shims
└── ember#2.9.0

ember#2.9.0 bower_components/ember
└── jquery#3.1.1

bootstrap#3.3.7 bower_components/bootstrap
└── jquery#3.1.1

jquery#3.1.1 bower_components/jquery


   ╭─────────────────────────────────────╮
   │                                     │
   │   Update available 1.7.7 → 1.7.9    │
   │   Run npm i -g bower to update      │
   │                                     │
   ╰─────────────────────────────────────╯

~/C/E/ember-d3-helpers git:master ❯❯❯ ember server
Using [email protected]
WARNING: [ember-d3] d3 sub module: "d3-array" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-axis" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-brush" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-chord" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-collection" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-color" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-dispatch" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-drag" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-dsv" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-ease" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-force" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-format" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-geo" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-hierarchy" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-interpolate" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-path" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-polygon" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-quadtree" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-queue" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-random" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-request" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-scale" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-selection" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-shape" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-time" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-time-format" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-timer" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-transition" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-voronoi" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-zoom" is not installed, please reinstall d3
Using [email protected]
WARNING: [ember-d3] d3 sub module: "d3-array" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-axis" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-brush" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-chord" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-collection" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-color" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-dispatch" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-drag" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-dsv" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-ease" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-force" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-format" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-geo" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-hierarchy" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-interpolate" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-path" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-polygon" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-quadtree" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-queue" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-random" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-request" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-scale" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-selection" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-shape" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-time" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-time-format" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-timer" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-transition" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-voronoi" is not installed, please reinstall d3
WARNING: [ember-d3] d3 sub module: "d3-zoom" is not installed, please reinstall d3
Livereload server on http://localhost:49154
Serving on http://localhost:4200/
The Broccoli Plugin: [Funnel: Funnel: D3 Source [d3-array]] failed with:
Error: Attempting to watch missing directory: /Users/cowboyd/Code/Ember/ember-d3-helpers/node_modules/d3-array
    at EventEmitter.Watcher_addWatchDir [as addWatchDir] (/Users/cowboyd/Code/Ember/ember-d3-helpers/node_modules/ember-cli/node_modules/ember-cli-broccoli-sane-watcher/index.js:128:11)
    at /Users/cowboyd/Code/Ember/ember-d3-helpers/node_modules/ember-cli/node_modules/broccoli-builder/lib/builder.js:93:35
    at tryCatch (/Users/cowboyd/Code/Ember/ember-d3-helpers/node_modules/ember-cli/node_modules/rsvp/dist/rsvp.js:538:12)
    at invokeCallback (/Users/cowboyd/Code/Ember/ember-d3-helpers/node_modules/ember-cli/node_modules/rsvp/dist/rsvp.js:553:13)
    at /Users/cowboyd/Code/Ember/ember-d3-helpers/node_modules/ember-cli/node_modules/rsvp/dist/rsvp.js:628:16
    at flush (/Users/cowboyd/Code/Ember/ember-d3-helpers/node_modules/ember-cli/node_modules/rsvp/dist/rsvp.js:2373:5)
    at doNTCallback0 (node.js:419:9)
    at process._tickCallback (node.js:348:13)

The broccoli plugin was instantiated at:
    at Funnel.Plugin (/Users/cowboyd/Code/Ember/ember-d3-helpers/node_modules/ember-d3/node_modules/broccoli-funnel/node_modules/broccoli-plugin/index.js:7:31)
    at new Funnel (/Users/cowboyd/Code/Ember/ember-d3-helpers/node_modules/ember-d3/node_modules/broccoli-funnel/index.js:56:10)
    at /Users/cowboyd/Code/Ember/ember-d3-helpers/node_modules/ember-d3/index.js:98:18
    at Array.forEach (native)
    at Class.treeForVendor (/Users/cowboyd/Code/Ember/ember-d3-helpers/node_modules/ember-d3/index.js:93:20)
    at Class._treeFor (/Users/cowboyd/Code/Ember/ember-d3-helpers/node_modules/ember-cli/lib/models/addon.js:371:33)
    at Class.treeFor (/Users/cowboyd/Code/Ember/ember-d3-helpers/node_modules/ember-cli/lib/models/addon.js:339:21)
    at /Users/cowboyd/Code/Ember/ember-d3-helpers/node_modules/ember-cli/lib/models/addon.js:254:34
    at Array.map (native)
    at Class.eachAddonInvoke (/Users/cowboyd/Code/Ember/ember-d3-helpers/node_modules/ember-cli/lib/models/addon.js:252:24)

When I boot the application, This is what I see.

build_error

Area Demo

I've got the basic demo up and running for an area chart. I'm currently working on adding in the axes. @taras I like the d3-graph component idea. Once that gets merged I'll update my example.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.