Releases: ming-codes/ember-cli-d3
Releases · ming-codes/ember-cli-d3
v1.1.5
v1.1.4
v1.1.3
v1.1.2
v1.1.1
v1.1.0
- Upgrade
d3-plugins-dist
to v3
v1.0.1
v1.0.0 Major Release
BREAKING CHANGE
{{data-visual}}
component now yields a stage object instead of the magic SVG. You can still access the magic SVG like so.
{{#data-visual as |stg width height|}}
{{#cart-lines select=stg.svg.select.chart as |selection|}}
{{cart-marker select=stg.svg.defs apply-to=selection}}
{{/cart-lines}}
{{/data-visual}}
In additional to the SVG stage, there are canvas
stage that lets you draw on <canvas>
2D. This allows developer to weave together visuals on both SVG and canvas, on the same coordinate system. This let's you take advantage of each specific technology for their strength. For example, rendering complex shapes and non-interactive objects in canvas
, then overlay interactive shapes in SVG.
The change in API also paves way for support like HTML stage, WebGL stage, and custom stages like pathgl.
v0.7.1
v0.7.0
d3-support
added#requiredProperties
to ensure all required properties are not empty beforecall
.- Upgrade d3-plugins-dist to 2.x
- Doc improvements