Releases: jakezatecky/d3-funnel
Releases · jakezatecky/d3-funnel
Release v2.0.0
Release v1.2.2
Release v1.2.1
Release v1.2.0
Release v1.1.1
v1.1.1 (July 31, 2017)
This is a patch for the npm release, which was shipped without the updated /dist
directory.
Release v1.1.0
v1.1.0 (July 31, 2017)
Release v1.1.0 adds a variety of new functionality to the funnel, and introduces a new data structure that allows for more flexibility on a row level than previously capable:
funnel.draw([{
label: 'Prospects',
value: 5000,
backgroundColor: '#d33',
}]);
The old structure of an array-of-arrays has been deprecated and will be removed in the v2.0 release. Please update to the newest data structure as soon as possible. Refer to the README for the list of available options, which includes all of the capabilities previously held in the data array.
Deprecations
- [#73]: The old array-of-arrays data structure has been deprecated in favor of a data objects
New Features
- [#45]: Add support for tooltips via
tooltip.enabled
andtooltip.format
- [#71]: Add
hideLabel
option to the data object - [#74]: Add
label.enabled
chart option - [#79]: Add support for
HTMLElement
in the D3Funnel constructor
Bug Fixes
- [#77]: Fix an issue where containers with zero width and/or height would not inherit from the default dimensions
Release v1.0.1
Release v1.0.0
v1.0.0 (August 2, 2016)
This release breaks major backwards compatibility by upgrading D3 3.x to
D3 4.x. Refer to D3's changes documentation for more info.
Behavior Changes
- [#62]: Upgrade D3 3.x to 4.x