All Versions
29
Latest Version
Avg Release Cycle
50 days
Latest Release
1800 days ago

Changelog History
Page 2

  • v0.12.7

    July 15, 2017
  • v0.12.6 Changes

    July 14, 2017

    July 14, 2017

    • Improves formatting option to the time axis, it can either be a d3 time format string or a callback function (#86, #164)
    • Cleanup of formatting code, and mirror change into the TimeTracker code so that it works the same. (#164).
    • ๐Ÿ‘€ Fixes the undefined time that would sometimes be seen above the tracker info box (#147)
    • ๐Ÿ›  Fixes issue where the format specified on the ChartContainer would become stale (#140)
    • ๐Ÿ›  Fixes problem when the brush would get stuck if fully expanded (#141)
    • Adds ability to control the tick size (#150)
    • ๐Ÿ“„ Docs provide link to source code for examples (#133)
  • v0.12.5 Changes

    Jun 15, 2017

    • ๐Ÿ“ฆ Fixes React propType warnings by using prop-types package (@aruntk in #152)
    • ๐Ÿ›  Fixes an issue with ScatterChart prop type (@christian-acuna in #155)
    • Pointer events allowing on ScatterChart (@samford100 in #137)
  • v0.12.3 Changes

    Feb 24, 2017

    • ๐Ÿ›  Fixes issue where the BoxChart is not re-rendering on TimeSeries change (#126))
  • v0.12.1 Changes

    Feb 24, 2017

    • 0๏ธโƒฃ Fixed default color for BoxChart infoBox
  • v0.12.0 Changes

    Feb 23, 2017

    โšก๏ธ Dependency updates:

    • ๐Ÿš€ Update to latest version of d3 dependencies (i.e. v1.0 releases)
    • โšก๏ธ Updates peer dependency to Pond 0.8.x. If you use Pond directly, especially events, there are some breaking changes in this version. Of particular note: new Event() is likely now new TimeEvent(). Static methods are still on the base class Event, however.

    โœจ Enhancements and API changes

    • ๐Ÿ’… EventMarkers now support a simple label attached to the marker, in addition to the flag style marker seen in the tracker. This allows some new options for annotations.

    ๐Ÿฑ markers

    • Charts no longer need a corresponding axis if you pass in the yScale directly (or if the chart doesn't need a y scale at all). This is nice for overlaying errors, or making an EventChart without having to create a bogus y-scale.
    • Change to Legend to clean up that code: props width and height are now symbolWidth and symbolHeight, which is clearer about what they do.
    • ๐Ÿ’… EventMarker infoStyle (and use within BarCharts and ScatterCharts) is broken into infoStyle (for the infoBox), stemStyle and markerStyle.
    • LineCharts or ScatterChart of IndexedEvents or TimeRangeEvents plot points in the center of their time range, not the beginning as they did before. This way markers do not have to take this into account.

    ๐Ÿ› Bug fixes:

    • Disable all mouse pan/zoom related event handling when enablePanZoom=false (#121) and #96))
    • ๐Ÿ›  Fixes bug resulting in stale format in TimeAxis (Fixes #128))
    • Missing propType in YAxis

    Website changes:

    • โœ… Adds babel-polyfill import to the examples page for IE support (untested) (Fixes #111))
    • ๐Ÿ“„ BarChart docs improvements: new simple example and better explanation of IndexedEvent requirement in API docs. (#125))

    ๐Ÿฑ

  • v0.11.3 Changes

    Feb 6, 2017

    • ๐Ÿ›  Fixes infoTimeFormat prop to work with BarCharts, so you can now format an IndexedEvent (#120)
    • ๐Ÿ›  Fixes missing curveMonotone curve type (now curveMonotoneX and curveMonotoneY) since the d3 API changed (#114)
  • v0.11.1 Changes

    Dec 1, 2016

    • ๐Ÿ›  Fixes bad proptype in TimeRangeMarker (#107)
  • v0.11.0 Changes

    Nov 30, 2016

    ๐Ÿ†• New

    • Adds a BoxChart chart. This is the first chart to enable automatic aggregations. More to come.
    • Adds a BoxChart example showing temperature ranges in NYC
    • Adds a BoxChart example to the existing cycling example, which shows how to do roll-ups directly on a TimeSeries to produce the summary BoxChart
    • Adds an example showing NASA global temperature data

    โœจ Enhancements

    • ๐Ÿ‘ BarChart: Support for negative values (@jverhoeven in #95)
    • EventChart: Can now set text label position and hover marker width (@primozs in #104)
    • ๐Ÿšš EventChart: Separate events for hover: onMouseOver and onMouseLeave replace onMouseMove (@primozs in #104)
    • Brush: Adds a callback for onTimeRangeSelectComplete (@viky293 in #91)

    ๐Ÿ› Bug fixes

    • ๐Ÿ›  EventChart: Fixes errors on pan/zoom (@primozs in #102)
    • ๐Ÿ’… Styler now correctly falls back to defaults for LineCharts, BarCharts and ScatterCharts (@siavelis in #103)

    General

    • ๐Ÿšš Removes the HorizontalBarChart, which now lives at react-timeseries-barchart to keep the library better focused
    • ๐Ÿ‘• Overhaul of linting rules. Uses AirBnB, almost. But not all examples are converted yet :(
    • More complete use of propTypes
    • ๐Ÿ“„ Better API docs
  • v0.10.1 Changes

    Sep 15, 2016

    • ๐Ÿ’… Fix AreaChart default style (#79)