ember-cli-d3
ember-cli-d3 copied to clipboard
An ember-cli addon to provide D3 integration into Ember app.
Running on the `v1.1.7` I am encountering these 2 deprecation warnings: ``` DEPRECATION: ember-cli-babel 5.x has been deprecated. Please upgrade to at least ember-cli-babel 6.6. Version 5.2.8 located: client ->...
Let’s get started with automated dependency management for ember-cli-d3 :muscle: This pull request **updates all your dependencies to their latest version**. Having them all up to date really is the...
I'd like to add a viewBox attribute to my svg. e.g. ``` ``` I can't work out how to do this. Any ideas?
This issue is used to track/discuss any plan for 2.0 rollout. Below is a list of ideas that came to mind. Feedbacks appreciated. - #35 `data-generator` is being removed. Users...
- [X] Introduction - [X] Getting Started - [X] Install - [X] Configuration - [X] Concepts and Principles - [X] Core Classes - [X] `data-visual` Component - [X] `svg` Context...
Hey, I recently updated Ember to 2.6 and there is some compatibility issue. Charts throw an exception during rendering: `Uncaught TypeError: Cannot read property 'template' of undefined` It seems that...
This addon seems to be very professional and extensible. However, I do not know how to implement D3 charts with it. Could you please extend your documentation and/or provide the...
Hi, I'm not sure if this is the right way to do it, but I've added HTML support to your d3 integration. Usage is the same as with the svg...
The current convention is that `.call` on component with `d3-support` receives a d3 selection of the container `` element. This causes some flexibility issue where component must use a ``...
``` Ember.Object.extend({ brush: Ember.computed(function () { return d3.svg.brush(); }) }); ``` In the event above, `d3.svg.brush` produces events that cannot be cleanly handled. When CP is recomputed, the previous brush...