Ming Liu

Results 26 issues of Ming Liu

It turns out CoffeeScript support embedded source map. So I just added a switch in options to additionally embed the CoffeeScript source into the output. This should resolve #1

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...

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...

``` hbs {{#data-visual as |stage width height|}} {{#parent-chart select=stage.svg.select.chart as |selection|}} {{child-chart-component select=selection}} {{/parent-chart}} {{/data-visual}} ``` ``` js // parent-chart.js Ember.Component.extend({ call(selection) { this.set('yieldDown', selection.append('g')); } }) ``` ``` js...

bug

`data-generator` test helper will be removed in the next major release. Please use [ember-cli-mirage](https://github.com/samselikoff/ember-cli-mirage) or [faker.js](https://github.com/marak/Faker.js/) instead

Similarly, any non-svg stage should be separate addon

There needs to be more demo visuals in the gallery. Some of them can be ported from d3js.org. - [ ] [Sine Wave](http://www.humblesoftware.com/demos/trig_d3) This could be a great example to...

help wanted

pangratz/ember-cli-htmlbars-inline-precompile Sounds like a great idea. No solid idea on how it could work out. There is advantage to this. D3 is very good with structured DOM that aligns nicely...

feature