Skip to content

Latest commit

 

History

History
1549 lines (704 loc) · 80.7 KB

CHANGELOG.md

File metadata and controls

1549 lines (704 loc) · 80.7 KB

20.0.2 (2020-07-23)

Bug Fixes

  • axis: dual axis x positioning of bars (#760) (71b49f8)
  • axis: left axis sizing based on title padding (#762) (3990589)

20.0.1 (2020-07-21)

Bug Fixes

  • custom domain error with fallback ordinal scale (#757) (142c3df), closes #756

20.0.0 (2020-07-19)

Features

BREAKING CHANGES

  • axis: - AxisSpec.gridLineStyle => AxisSpec.gridLine
  • AxisSpec.gridLineStyle => AxisSpec.gridLine
  • AxisSpec.tickLabelRotation => AxisStyle.tickLabel.rotation
  • AxisSpec.tickPadding => AxisStyle.tickLine.padding
  • AxisSpec.tickSize => AxisStyle.tickLine.size
  • AxisStyle.tickLabelPadding => AxisStyle.tickLabel.padding
  • GridLineConfig => GridLineStyle
  • AxisSpec.style => RecursivePartial<AxisStyle> (new AxisStyle type)
  • AxisConfig.axisLineStyle => AxisStyle.axisLine
  • AxisConfig.axisTitleStyle => AxisStyle.axisTitle
  • AxisConfig.tickLabelStyle => AxisStyle.tickLabel
  • AxisConfig.tickLineStyle => AxisStyle.tickLine
  • GridLineStyle requires all properties
  • deprecate AxisSpec.showGridLines in favor of AxisSpec.gridLine.visible

19.9.1 (2020-07-19)

Bug Fixes

  • correct bad breaking change merge (3acc263)

19.9.0 (2020-07-17)

Features

  • axis: formatting different for label vs tooltip and legend (#750) (daff503)
  • legend: add legend item actions and margins (#749) (8136dca), closes #717

19.8.1 (2020-07-07)

Bug Fixes

  • axes: remove only consecutive duplicated ticks (#742) (5038a63), closes #667

19.8.0 (2020-07-06)

Bug Fixes

Features

  • annotation: enable marker positioning on LineAnnotation (#737) (ab5e413), closes #701
  • add custom annotation tooltip (#727) (435c67c)

19.7.0 (2020-06-30)

Bug Fixes

  • partition: linked label on a larger than 180 degree slice (#726) (2504bbe), closes #699

Features

19.6.3 (2020-06-29)

Bug Fixes

  • move redux dev deps to optional deps (#725) (df984cc)

19.6.2 (2020-06-29)

Bug Fixes

19.6.1 (2020-06-29)

Bug Fixes

19.6.0 (2020-06-24)

Features

19.5.2 (2020-06-16)

Bug Fixes

  • apply fixed positioning to hidden tooltip (#716) (12b1135)

19.5.1 (2020-06-16)

Bug Fixes

19.5.0 (2020-06-15)

Bug Fixes

Features

  • partition: add 4.5 contrast for text in partition slices (#608) (eded2ac), closes #606
  • add screenshot functions to partition/goal (#697) (5581c3c)

19.4.1 (2020-06-01)

Bug Fixes

19.4.0 (2020-05-28)

Bug Fixes

  • partition: consider legendMaxDepth on legend size (#654) (9429dcf), closes #639

Features

19.3.0 (2020-05-08)

Bug Fixes

Features

  • partition: linked text maximum length config (#665) (7166e42)

19.2.0 (2020-05-05)

Features

19.1.2 (2020-05-04)

Bug Fixes

19.1.1 (2020-04-30)

Bug Fixes

19.1.0 (2020-04-30)

Features

  • partition: treemap group text in grooves (#652) (304dd48)

19.0.0 (2020-04-28)

Bug Fixes

Features

BREAKING CHANGES

  • brush: The type used by the BrushEndListener is now in the following form { x?: [number, number]; y?: Array<{ groupId: GroupId; values: [number, number]; }> } where x contains an array of [min, max] values, and the y property is an optional array of objects, containing the GroupId and the values of the brush for that specific axis.
  • annotations: In the rectangular annotation, the y0 parameter of the coordinates now refers to the minimum value and the y1 value refers to the maximum value of the y domain.

18.4.2 (2020-04-24)

Bug Fixes

18.4.1 (2020-04-22)

Bug Fixes

18.4.0 (2020-04-22)

Bug Fixes

  • partition: single slice wrong text positioning (#643) (6298d36), closes #637
  • treemap: align onElementClick parameters to sunburst (#636) (2c1d224), closes #624

Features

  • allow colorVariant option for series specific color styles (#630) (e5a206d)
  • series: BubbleSeries (alpha) and markSizeAccessor (#559) (3aa235e)

18.3.0 (2020-04-15)

Bug Fixes

  • remove series with undefined splitSeriesAccessor values (#627) (59f0f6e)

Features

18.2.2 (2020-04-09)

Bug Fixes

18.2.1 (2020-04-07)

Bug Fixes

18.2.0 (2020-03-26)

Bug Fixes

  • line_annotation: keep the spec in state after chart rerender (#605) (43c13f1), closes #604

Features

  • partition: stroke configuration and linked label value font format (#602) (7dce0a3)

18.1.0 (2020-03-18)

Bug Fixes

  • add unicorn eslint as dev dependency (#591) (30fd07c)

Features

18.0.0 (2020-03-17)

Code Refactoring

Features

  • cleaner color API on SeriesSpec (#571) (f769f7c)
  • legend: allow color picker component render prop (#545) (90f4b95)
  • partition: add element click, over and out events (#578) (103df02)
  • partition: add tooltip (#544) (6bf9a69), closes #246
  • percentage display in partitioning charts (#558) (d6aa8d7)
  • specify series name with a function on SeriesSpec (#539) (358455a)
  • xAccessor can be a function accessor (#574) (bcc3d63)

BREAKING CHANGES

  • The getSpecId, getGroupId, getAxisId and getAnnotationId are no longer available. Use a simple string instead.
  • customSeriesColors prop on SeriesSpec is now color. The CustomSeriesColors type is replaced with SeriesColorAccessor.
  • Remove customSubSeriesName prop on series specs in favor of cleaner api using just the name prop on SeriesSpec. The types SeriesStringPredicate, SubSeriesStringPredicate have been removed.
  • the SeriesIdentifier type is generalized into a simplified object with two values in common: specId and key. A specialized XYChartSeriesIdentifier extends now the base SeriesIdentifier. The SettingsSpec prop showLegendDisplayValue is renamed to showLegendExtra and its default value is now false hiding the current/last value on the legend by default.

17.1.1 (2020-02-21)

Bug Fixes

  • redux connect memo issue related to spec upserting (#563) (f3a05f1)

17.1.0 (2020-02-12)

Features

  • remove konva and add native canvas rendering (#540) (08a4d5d)

17.0.3 (2020-02-10)

Bug Fixes

  • ie11: replace fast-deep-equal with an internal copy IE11 safe (#542) (2a02d7d)

17.0.2 (2020-02-05)

Bug Fixes

  • empty domain error for ordinal x scale (#536) (ce4e84f)

17.0.1 (2020-02-05)

Bug Fixes

  • replace PureComponent with shouldComponentUpdate (#534) (5043725)

17.0.0 (2020-01-30)

Bug Fixes

Features

BREAKING CHANGES

  • listeners: the onElementOver and the onElementClick are now called with Array<[GeometryValue, SeriesIdentifier]> instead of Array<GeometryValue>
  • renames in Partition charts— Layers: fillLabel.formatter->fillLabel.valueFormatter; type FillLabel-> FillLabelConfig

Non-breaking changes:

  • feat: the values in linked labels are rendered, just like they have been in the sectors (formerly, the value could optionally be put in the link label accessor itself)

  • feat: font styling is possible separately for values: valueFormatter configs

  • test: opacity decrease example; coloring examples

  • feat: hierarchical data (parent, sortIndex) is made available to accessors (see stories, helpful with eg. coloring)

  • refactor: tighter types; other code improvements

16.2.1 (2020-01-23)

Bug Fixes

16.2.0 (2020-01-21)

Features

  • implement treemap, sunburst, pie and donut charts (#493) (e4de627)

16.1.0 (2020-01-08)

Features

16.0.2 (2020-01-03)

Bug Fixes

16.0.1 (2020-01-03)

Bug Fixes

  • specs: shows a chart message without series specified (#506) (ba1a67b)

16.0.0 (2020-01-02)

Bug Fixes

  • external pointer: avoid recursive-loops on pointer events (#503) (c170f0d), closes #504

BREAKING CHANGES

  • external pointer: The onCursorUpdate Settings property is changed to a more generic onPointerUpdate. The same apply for the event type CursorEvent that is now PointerEvent and can assume a PointerOverEvent or PointOutEvent shape (see TS types)

15.0.5 (2019-12-12)

Bug Fixes

15.0.4 (2019-12-12)

Bug Fixes

15.0.3 (2019-12-05)

Bug Fixes

15.0.2 (2019-12-05)

Bug Fixes

  • crosshair: hide horizontal line when the pointer is outside chart (#484) (654d929), closes #483

15.0.1 (2019-12-02)

Bug Fixes

15.0.0 (2019-12-02)

Code Refactoring

BREAKING CHANGES

  • GeometryId is now SeriesIdentifier. customSeriesColors prop on SeriesSpec which used to take a CustomSeriesColorsMap, now expects a CustomSeriesColors type. LegendItemListener now passes the SeriesIdentifier type as the first callback argument.
  • SpecId,AxisId, AnnotationId types are down-casted to a string type. The getSpecId, getAxisId and getAnnotationId methods still exist and but return just the same passed string until deprecated in a future version. The spec ids, previously id, axisId,annotationId etc are now aligned to use the same prop name: id. The chart rendering status data-ech-render-complete and data-ech-render-count is no more at the root level of the echChart div, but on its child element: echChartStatus. The Spec has two new private properties called chartType and specType.

14.2.0 (2019-11-25)

Features

14.1.0 (2019-11-13)

Features

14.0.0 (2019-11-11)

Code Refactoring

  • typings: prepare for upgrade TS to 3.7 (#402) (e2700de)

BREAKING CHANGES

  • typings: We have a few exported styles, used in the Theme that are changed: SharedGeometryStyle to SharedGeometryStateStyle and GeometryStyle to GeometryStateStyle

13.6.0 (2019-11-01)

Features

13.5.12 (2019-10-31)

Bug Fixes

13.5.11 (2019-10-31)

Bug Fixes

  • tooltip: render tooltip on portal to avoid hidden overflows (#418) (1c00e23), closes #375

13.5.10 (2019-10-31)

Bug Fixes

  • legend: disable fade of other charts when hiding an item (#446) (ff4e097)

13.5.9 (2019-10-25)

Bug Fixes

13.5.8 (2019-10-25)

Bug Fixes

13.5.7 (2019-10-23)

Bug Fixes

  • switch to momentjs to handle timezones (#436) (a9f98c8)

13.5.6 (2019-10-22)

Bug Fixes

  • tickformatter: add timeZone to tickFormatter (#430) (6256d4d), closes #427

13.5.5 (2019-10-22)

Bug Fixes

  • resize observer loop limit exception (#429) (5243ef3)

13.5.4 (2019-10-17)

Bug Fixes

13.5.3 (2019-10-17)

Bug Fixes

  • align series names on splitted series configuration (#421) (bbecbcc), closes #420

13.5.2 (2019-10-10)

Bug Fixes

  • handle null y0 values on y log scale rendering (#413) (5731c10)

13.5.1 (2019-10-09)

Bug Fixes

  • mixing bars with line or area series breaks legend toggle (#410) (57c0e3c), closes #399

13.5.0 (2019-10-09)

Features

  • data: fill datasets with zeros with missing points when stacked (#409) (ef84fd4), closes #388

13.4.1 (2019-10-09)

Bug Fixes

13.4.0 (2019-10-07)

Features

13.3.0 (2019-10-02)

Features

  • tooltip: tooltip label format for upper/lower banded area series (#391) (dfd5d7b), closes #162

13.2.0 (2019-10-01)

Features

13.1.1 (2019-09-28)

Bug Fixes

  • rendering: out-of-domain rendering of points/bars/lines/areas (#395) (b6fee52), closes #386

13.1.0 (2019-09-27)

Features

  • axis: add option for integer only axis ticks (#389) (4fcfe3c), closes #387

13.0.1 (2019-09-27)

Bug Fixes

13.0.0 (2019-09-19)

Features

BREAKING CHANGES

  • axis: theme.axes.tickLineStyle.visible is now required (default base is true)

12.1.0 (2019-09-19)

Features

12.0.2 (2019-09-16)

Bug Fixes

  • reactive_chart: fix order of instantiation of onBrushEnd callback (#376) (527d68d), closes #360

12.0.1 (2019-09-12)

Bug Fixes

12.0.0 (2019-09-11)

Features

BREAKING CHANGES

  • theme: Added GridLineStyle to Theme (theme.axes.gridLineStyle.horizontal and theme.axes.gridLineStyle.vertical)

  • add gridLineStyle to AxisConfig

  • add chartTheme vs axisSpec

  • add gridLineStyle for theme or spec

  • merge gridLineConfig from theme with axisSpec

  • add visible key to GridLineConfig

  • specify theme styling per axis in story

  • add gridLineStyle theme with horiz and vert

11.2.0 (2019-09-04)

Features

  • chart_state: add render change event (#365) (521889b)

11.1.2 (2019-08-30)

Bug Fixes

11.1.1 (2019-08-28)

Bug Fixes

11.1.0 (2019-08-27)

Features

  • add prop to set debounce time, lower default (#356) (38e41e0)

11.0.5 (2019-08-27)

Bug Fixes

11.0.4 (2019-08-27)

Bug Fixes

  • crosshair: limit the width of the cursor band on edges (#353) (1177e59), closes #352

11.0.3 (2019-08-26)

Bug Fixes

  • vertical_cursor: fix tooltip and external events for 1st datapoint (#349) (5c5b8d4)

11.0.2 (2019-08-26)

Bug Fixes

  • better theme defaults for light and dark themes (#340) (693cdc1)

11.0.1 (2019-08-26)

Bug Fixes

11.0.0 (2019-08-26)

Bug Fixes

BREAKING CHANGES

  • histogram: The current coordinate configuration of a rect annotation were inverted. This commit now reverse them: a rect coordinate with only the x0 value will cover from the x0 value to the end of the domain, a rect coordinate with only the x1 value will cover the interval from the beginning of the domain till the x1 value.

10.3.1 (2019-08-26)

Bug Fixes

10.3.0 (2019-08-26)

Features

10.2.0 (2019-08-23)

Features

10.1.1 (2019-08-22)

Bug Fixes

  • crosshair: disable band when chart is empty (#338) (3bd0c43), closes #337

10.1.0 (2019-08-22)

Features

10.0.1 (2019-08-21)

Bug Fixes

10.0.0 (2019-08-21)

Bug Fixes

Features

BREAKING CHANGES

  • theme: remove baseThemeType prop on Settings component and BaseThemeTypes type.
  • theme.legend.spacingBuffer added to Theme type. Controls the width buffer between the legend label and value.

9.2.1 (2019-08-20)

Bug Fixes

  • tooltip: fix duplicate key warning for band area charts (#327) (0ca1884), closes #326

9.2.0 (2019-08-19)

Bug Fixes

  • reduce opacity for points when hovering over legend items (#322) (196341b), closes #291

Features

9.1.1 (2019-08-16)

Bug Fixes

  • axis: limit chart dimensions to avoid axis labels overflow (#314) (5751ce0)

9.1.0 (2019-08-14)

Features

9.0.4 (2019-08-13)

Bug Fixes

9.0.3 (2019-08-13)

Bug Fixes

9.0.2 (2019-08-12)

Bug Fixes

  • shift bars independently from the specs order (#302) (1cd934d)

9.0.1 (2019-08-07)

Bug Fixes

  • handle splitted series with group value to 0 (#289) (0f2217e), closes #288

9.0.0 (2019-08-05)

Features

BREAKING CHANGES

  • bar_chart: colorAccessors removed from YBasicSeriesSpec (aka for all series) which had acted similarly to a split accessor.

8.1.8 (2019-08-05)

Bug Fixes

  • tooltip: fix tooltip formatting for rotated charts (#285) (651edd1), closes #273

8.1.7 (2019-08-05)

Bug Fixes

  • tooltip: fix overflow for long series names (#274) (717486f), closes #270

8.1.6 (2019-08-05)

Bug Fixes

8.1.5 (2019-08-02)

Bug Fixes

  • disable tooltip when details or custom content is null (#280) (4d78fdc)

8.1.4 (2019-08-01)

Bug Fixes

  • theme: restore original point radius values (#276) (16f789a)

8.1.3 (2019-07-30)

Bug Fixes

8.1.2 (2019-07-24)

Bug Fixes

  • export GeometryValue so onElementClick callbacks can be typed (#272) (8ed5d11)

8.1.1 (2019-07-24)

Bug Fixes

  • handle chart click as mouseUp to prevent click while brushing (#269) (7881b8d)

8.1.0 (2019-07-22)

Features

  • display empty chart status when no series is selected (f1505df), closes #102

8.0.2 (2019-07-17)

Bug Fixes

  • adjust domain & range for single value histogram (#265) (3f1358e)

8.0.1 (2019-07-15)

Bug Fixes

  • position tooltip within chart with single value xScale (#259) (f458bc9)

8.0.0 (2019-07-15)

Code Refactoring

Features

  • style: allow fill and stroke overrides (#258) (99c5e9f)

BREAKING CHANGES

  • style: LineStyle, AreaStyle and BarSeriesStyle types differs on the optional values. stroke and fill on the theme or specific series style now override the computed series color.

  • legend: the onLegendItemClick click handler is no longer applied when clicking on the title. Instead a simple visibility change is applied.

7.2.1 (2019-07-10)

Bug Fixes

  • last_value: compute last value for non stacked series (#261) (803c34e)

7.2.0 (2019-07-05)

Bug Fixes

  • ticks: fill in additional ticks for histogram (#251) (af92736)

Features

7.1.0 (2019-07-03)

Features

7.0.2 (2019-07-03)

Bug Fixes

7.0.1 (2019-06-25)

Bug Fixes

7.0.0 (2019-06-24)

Features

  • annotation: simplify custom tooltip function (#247) (982bc63)

BREAKING CHANGES

  • annotation: this changes the type signature of RectAnnotation.renderTooltip? from (position, details) => JSX.Element to (details) => JSX.Element. This allows the user to pass in a custom element without having to do the heavy lifting of writing the container positioning styles themselves.

6.3.0 (2019-06-20)

Features

6.2.0 (2019-06-19)

Features

  • add minInterval option for custom xDomain (#240) (27f14a0)

6.1.0 (2019-06-19)

Features

  • brush: show crosshair cursor when brush enabled (#243) (0b44b87)

6.0.1 (2019-06-14)

Bug Fixes

  • line_annotation: use scaleAndValidate for line annotations (#236) (48b180a)

6.0.0 (2019-06-13)

Features

BREAKING CHANGES

  • tooltip: Previously, you could define tooltipType and tooltipSnap props in a Settings component; this commit removes these from SettingsSpecProps and instead there is a single tooltip prop which can accept either a TooltipType or a full TooltipProps object which may include type, snap, and/or headerFormattter for formatting the header.

5.2.0 (2019-06-12)

Features

5.1.0 (2019-06-11)

Features

5.0.0 (2019-06-10)

Bug Fixes

  • css: remove dependency on EUI components and use only EUI styles (#208) (122fade)

BREAKING CHANGES

  • css: EUI components are removed from this library. The single chart style.css stylesheet is now replaced by a theme_only_light.css or theme_only_dark.css file that brings in all the required styling for chart, tooltip and legends. theme_light.css and theme_dark.css styles include also a reset CSS style

4.2.9 (2019-06-07)

Bug Fixes

  • chart_resizer: debounce resize only after initial render (#229) (96d3fd6), closes #109

4.2.8 (2019-06-06)

Bug Fixes

  • crosshair: adjust band position for rotation (#220) (ac02021)

4.2.7 (2019-06-05)

Bug Fixes

  • axis_title: remove whitespace with empty axis title (#226) (74198dc), closes #225

4.2.6 (2019-05-21)

Bug Fixes

  • build: compile module resolution in commonjs (#214) (29e2a34)

4.2.5 (2019-05-21)

Bug Fixes

4.2.4 (2019-05-21)

Bug Fixes

  • eui: generate css without EUI classes (#210) (776387b)

4.2.3 (2019-05-20)

Bug Fixes

  • legend: avoid expanding label on click (#209) (22cad8e)

4.2.2 (2019-05-20)

Bug Fixes

  • ie11: fix deps and layout compatibility issues on IE11 (9555e2a), closes #184

4.2.1 (2019-05-09)

Bug Fixes

  • eui: update EUI dependency to 11.0.0 (#206) (24779cb)

4.2.0 (2019-05-06)

Features

  • rect_annotation: add RectAnnotation type (#180) (b339318)

4.1.0 (2019-05-04)

Features

  • add option to toggle value labels on bar charts (#182) (6d8ec0e)

4.0.2 (2019-05-03)

Bug Fixes

  • scales: improve ticks for time domains spanning a DST switch (#204) (2713336)

4.0.1 (2019-05-02)

Bug Fixes

4.0.0 (2019-04-28)

Features

BREAKING CHANGES

  • scales: the ScalesConfig type of the theme is changed from {ordinal:{padding: number}} to {barsPadding: number}

3.11.4 (2019-04-26)

Bug Fixes

  • bars: remove border visibility based on bar width (#192) (a270bab), closes #189

3.11.3 (2019-04-24)

Bug Fixes

3.11.2 (2019-04-16)

Bug Fixes

3.11.1 (2019-04-16)

Bug Fixes

  • apply transform.x to area & line geometries (#172) (da4f07f)

3.11.0 (2019-04-16)

Bug Fixes

Features

3.10.2 (2019-04-12)

Bug Fixes

  • exports: fix missing exports for annotations (#166) (fe28afb)

3.10.1 (2019-04-11)

Bug Fixes

3.10.0 (2019-04-11)

Features

3.9.0 (2019-04-10)

Features

  • legend: display series value (dependent on hover) & sort in legend (#155) (78af858)

3.8.0 (2019-04-08)

Features

  • line_annotation: add hideLines and hideTooltips props to spec (#154) (ba806b1)

3.7.2 (2019-04-08)

Bug Fixes

3.7.1 (2019-04-05)

Bug Fixes

  • domain: set domain bounds dependent on negative/positive values (#149) (5b16be6)

3.7.0 (2019-04-04)

Features

  • legend: hide legend item if hideLegendItem on series spec is true (#147) (6761c2b)

3.6.0 (2019-04-04)

Features

  • annotations: render line annotations via LineAnnotation spec (#126) (98ff170)

3.5.1 (2019-04-02)

Bug Fixes

  • build: fix dependencies for kibana integration (#146) (b875e3d), closes #145

3.5.0 (2019-04-01)

Bug Fixes

Features

3.4.5 (2019-03-29)

Bug Fixes

  • animation: re-enabled animateData prop to disable animation (#129) (32b4263)
  • specs: limit xScaleType to linear, time and ordinal (#127) (59c3b70), closes #122

3.4.4 (2019-03-28)

Bug Fixes

  • crosshair: use offsetX/Y instead of clientX/Y (#128) (7c1155f), closes #123

3.4.3 (2019-03-26)

Bug Fixes

  • chart_state: maintain series visibility state on props update (#118) (18e7784)

3.4.2 (2019-03-26)

Bug Fixes

3.4.1 (2019-03-26)

Bug Fixes

  • brushing: enable mouseup event outside chart element (#120) (77d62f6), closes #119

3.4.0 (2019-03-25)

Features

3.3.1 (2019-03-25)

Bug Fixes

  • chart: fix duplicated keys for chart elements (#115) (6f12067)

3.3.0 (2019-03-22)

Features

3.2.0 (2019-03-19)

Features

  • domain: scale data to a specific domain via axis spec (#98) (b039ebf)

3.1.1 (2019-03-19)

Bug Fixes

  • npm: add missing generated file to npm package (6dd9140)

3.1.0 (2019-03-11)

Features

  • series: set custom series colors through spec prop (#95) (fb09dc9)

3.0.1 (2019-03-08)

Bug Fixes

  • canvas_text_bbox_calculator: increase font scaling factor (#93) (f6a1f1d)

3.0.0 (2019-03-06)

Bug Fixes

  • scale: return ticks in millis for time scales for line/area charts (8b46283)

BREAKING CHANGES

  • scale: The props callback is called with millis instead of Date for axis on line or area only charts.

2.1.0 (2019-03-06)

Features

  • legend/click: add click interations on legend titles (#51) (7d6139d)

2.0.0 (2019-02-19)

Features

BREAKING CHANGES

  • The Theme.AxisConfig type has a different signature. It now contains axisTitleStyle, axisLineStyle, tickLabelStyle and tickLineStyle defined as TextStyle or StrokeStyle elements. The Theme interface is changed in a more flat structure. darkMode prop from Setting is removed. theme prop in Setting is now a Theme type object, not a PartialTheme. You can use mergeWithDefaultTheme function to merge an existing theme with a partial one.

1.1.1 (2019-02-15)

Bug Fixes

1.1.0 (2019-02-14)

Features

  • legend/series: add hover interaction on legend items (#31) (c56a252), closes #24

1.0.2 (2019-02-08)

Bug Fixes

  • offscreen canvas: set negative position to move offscreen (#50) (0f61ac8), closes #43

1.0.1 (2019-02-07)

Bug Fixes

  • axis labels: offset previous space correctly (#45) (ff2a47a), closes #42

1.0.0 (2019-02-07)

Bug Fixes

  • reflect specs ids on legend items when using single series (8b39f15)
  • axis: add axisTitleHeight to axis increments (#29) (e34f0ae), closes #26
  • axis: fix horizontal title positioning to account for title padding (08d1f83)
  • axis: scale tick labels to fix text truncation on chrome (#38) (99c2332), closes #18
  • axis: use titleFontSize for debug rect for horizontal axis title (#17) (af4aa58), closes #11
  • dimensions: use chart top padding in computation of chart height (42585f7), closes #13
  • x_domain: fix x value asc sorting using numbers (26b33ff)

Features

  • add tickLabelRotation and showGridLines features (#7) (47f118b)
  • axis: draw grid lines separately from axis tick and customize style with config (#8) (ab7e974)