All Versions
10
Latest Version
Avg Release Cycle
146 days
Latest Release
2348 days ago

Changelog History

  • v2.0.0 Changes

    July 02, 2018

    Revamped 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 or uvcharts.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, 2015

    Introduces 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

    @pankajkumar005, @hashd

  • 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}}
    
  • 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