Changelog History
-
v2.0.0 Changes
July 02, 2018Revamped the uvCharts library to be more in line with the recent renaissance that is taking place in front-end engineering. The goals of v2 are -
- Modular code - import and use charts that you want without including everything and the kitchen sink
- Render to both SVG & Canvas
- Charts should be renderable on a server
- Easy to extend
- Written in ES6 - with type definitions made available for both Typescript & Flow
-
v1.1.6 Changes
October 04, 2018- โ Adds support for rotated/tilted horizontal axis labels
๐ also fixes problem with test and build scripts
-
v1.1.5 Changes
September 12, 2016๐ฆ uvCharts, now as bower and npm package
-
v1.1.2 Changes
May 10, 2016๐ This release introduces concept of a full release file which includes d3 source so users can consume uvCharts without having to include d3 separately in their web apps.
๐ Use
uvcharts.full.js
oruvcharts.full.min.js
to use uvCharts directly without having to include d3 separately -
v1.1.1 Changes
April 20, 2016- Introduces ability to mark reset in step up bar charts
- โ Adds a new softer color palette as default, which is pleasing on the eye
- ๐ Fixes bug with incorrect legends being shown in Polar Area and Donut charts
- ๐ Makes chart type case insensitive while invoking uv.chart API
-
v1.1.1-pre Changes
September 14, 2015Introduces ability to mark reset in Step Up Bar charts
Mark reset by simply adding the resetSum property to your dataset
this.dataset = { 'IE' : [ {name: '2001', value: 60}, {name: '2002', value: 70}, {name: '2003', value: 80}, {name: '2004', value: 90, resetSum: true}, {name: '2005', value: 20} ] }
-
v1.1.0 Changes
August 23, 2015โก๏ธ 1.1.0 is a significant update to 1.0.0 with a lot of exciting stuff mentioned below:
๐ Features
- ๐ฑ Responsiveness
- ๐ Negative scales in Bar, Step Up Bar, Line, Area charts (Other chart types are not supported when using Negative scales as it doesn't make sense. If you think it can be extended to the other chart types, let us know by raising an issue)
- ๐ Click callback support
๐ง > Note: Responsiveness is enabled by default for all charts, you can disable it by adding
responsive: false
to the graph section in configuration๐ Bug fixes
Quite a few of them, do check out our issues closed tagged as bugs
Depreciations
StepUpWaterfall has been depreciated in favor of StepUpBar which is now capable to provide same functionality.
๐ Release credits
-
v1.1.0-rc
August 23, 2015 -
v1.0.5 Changes
July 23, 2015- ๐ Features
- Users can now set max value for measure axis in corresponding horizontal/vertical oriented charts from within the configuration.
eg:
config = {graph: {max: 1024}}
- ๐ Features
-
v1.0.4 Changes
July 21, 2015- ๐ Features
- Stepup waterfall added to support multicategory waterfall charts in form of stepup bar
๐ Note: use
StepUpWaterfall
chartType while building the chart - ๐ Features