@carbon/charts 0.59.0-beta.0 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +244 -360
- package/LICENSE.md +201 -0
- package/README.md +5 -1
- package/{dist/axis-chart.d.ts → axis-chart.d.ts} +0 -0
- package/{dist/axis-chart.js → axis-chart.js} +0 -0
- package/{dist/axis-chart.js.map → axis-chart.js.map} +0 -0
- package/build/demo/create-codesandbox.d.ts +123 -0
- package/{dist → build}/demo/data/CHART_TYPES.d.ts +0 -0
- package/{dist → build}/demo/data/alluvial.d.ts +0 -0
- package/{dist → build}/demo/data/area.d.ts +0 -0
- package/{dist → build}/demo/data/bar.d.ts +0 -0
- package/{dist → build}/demo/data/boxplot.d.ts +0 -0
- package/{dist → build}/demo/data/bubble.d.ts +0 -0
- package/{dist → build}/demo/data/bullet.d.ts +0 -0
- package/{dist → build}/demo/data/circle-pack.d.ts +0 -0
- package/{dist → build}/demo/data/combo.d.ts +0 -0
- package/{dist → build}/demo/data/donut.d.ts +0 -0
- package/{dist → build}/demo/data/gauge.d.ts +0 -0
- package/{dist → build}/demo/data/heatmap.d.ts +0 -0
- package/{dist → build}/demo/data/high-scale.d.ts +0 -0
- package/{dist → build}/demo/data/hightlight.d.ts +0 -0
- package/{dist → build}/demo/data/histogram.d.ts +0 -0
- package/{dist → build}/demo/data/index.d.ts +0 -0
- package/{dist → build}/demo/data/line.d.ts +0 -0
- package/{dist → build}/demo/data/lollipop.d.ts +0 -0
- package/{dist → build}/demo/data/meter.d.ts +0 -0
- package/{dist → build}/demo/data/pie.d.ts +0 -0
- package/{dist → build}/demo/data/radar.d.ts +0 -0
- package/{dist → build}/demo/data/scatter.d.ts +0 -0
- package/{dist → build}/demo/data/step.d.ts +0 -0
- package/{dist → build}/demo/data/time-series-axis.d.ts +0 -0
- package/{dist → build}/demo/data/toolbar.d.ts +0 -0
- package/{dist → build}/demo/data/tree.d.ts +0 -0
- package/{dist → build}/demo/data/treemap.d.ts +0 -0
- package/{dist → build}/demo/data/wordcloud.d.ts +0 -0
- package/{dist → build}/demo/data/zoom-bar.d.ts +0 -0
- package/build/demo/utils.d.ts +40 -0
- package/build/src/axis-chart.d.ts +10 -0
- package/build/src/chart.d.ts +14 -0
- package/build/src/charts/alluvial.d.ts +8 -0
- package/build/src/charts/area-stacked.d.ts +6 -0
- package/build/src/charts/area.d.ts +6 -0
- package/build/src/charts/bar-grouped.d.ts +6 -0
- package/build/src/charts/bar-simple.d.ts +6 -0
- package/build/src/charts/bar-stacked.d.ts +6 -0
- package/build/src/charts/boxplot.d.ts +8 -0
- package/build/src/charts/bubble.d.ts +6 -0
- package/build/src/charts/bullet.d.ts +8 -0
- package/build/src/charts/circle-pack.d.ts +8 -0
- package/build/src/charts/combo.d.ts +7 -0
- package/build/src/charts/donut.d.ts +6 -0
- package/build/src/charts/gauge.d.ts +8 -0
- package/build/src/charts/heatmap.d.ts +10 -0
- package/build/src/charts/histogram.d.ts +8 -0
- package/{src/charts/index.ts → build/src/charts/index.d.ts} +0 -0
- package/build/src/charts/line.d.ts +6 -0
- package/build/src/charts/lollipop.d.ts +6 -0
- package/build/src/charts/meter.d.ts +8 -0
- package/build/src/charts/pie.d.ts +8 -0
- package/build/src/charts/radar.d.ts +8 -0
- package/build/src/charts/scatter.d.ts +6 -0
- package/build/src/charts/tree.d.ts +8 -0
- package/build/src/charts/treemap.d.ts +8 -0
- package/build/src/charts/wordcloud.d.ts +8 -0
- package/build/src/components/axes/axis.d.ts +24 -0
- package/build/src/components/axes/chart-clip.d.ts +13 -0
- package/build/src/components/axes/grid-brush.d.ts +10 -0
- package/build/src/components/axes/grid.d.ts +22 -0
- package/build/src/components/axes/hover-axis.d.ts +10 -0
- package/build/src/components/axes/ruler-binned.d.ts +7 -0
- package/build/src/components/axes/ruler-stacked.d.ts +4 -0
- package/build/src/components/axes/ruler.d.ts +27 -0
- package/build/src/components/axes/toolbar.d.ts +40 -0
- package/build/src/components/axes/two-dimensional-axes.d.ts +16 -0
- package/build/src/components/axes/zero-line.d.ts +7 -0
- package/build/src/components/axes/zoom-bar.d.ts +28 -0
- package/build/src/components/component.d.ts +28 -0
- package/build/src/components/diagrams/buildPaths.d.ts +39 -0
- package/build/src/components/diagrams/markerDefinitions.d.ts +37 -0
- package/build/src/components/essentials/canvas-chart-clip.d.ts +6 -0
- package/build/src/components/essentials/color-scale-legend.d.ts +17 -0
- package/build/src/components/essentials/highlights.d.ts +13 -0
- package/build/src/components/essentials/legend.d.ts +11 -0
- package/build/src/components/essentials/modal.d.ts +14 -0
- package/build/src/components/essentials/threshold.d.ts +20 -0
- package/build/src/components/essentials/title-meter.d.ts +30 -0
- package/build/src/components/essentials/title.d.ts +20 -0
- package/build/src/components/essentials/tooltip-axis.d.ts +4 -0
- package/build/src/components/essentials/tooltip.d.ts +22 -0
- package/build/src/components/graphs/alluvial.d.ts +14 -0
- package/build/src/components/graphs/area-stacked.d.ts +11 -0
- package/build/src/components/graphs/area.d.ts +12 -0
- package/build/src/components/graphs/bar-grouped.d.ts +20 -0
- package/build/src/components/graphs/bar-simple.d.ts +12 -0
- package/build/src/components/graphs/bar-stacked.d.ts +13 -0
- package/build/src/components/graphs/bar.d.ts +5 -0
- package/build/src/components/graphs/boxplot.d.ts +9 -0
- package/build/src/components/graphs/bubble.d.ts +13 -0
- package/build/src/components/graphs/bullet.d.ts +12 -0
- package/build/src/components/graphs/circle-pack.d.ts +19 -0
- package/build/src/components/graphs/donut.d.ts +9 -0
- package/build/src/components/graphs/gauge.d.ts +27 -0
- package/build/src/components/graphs/heatmap.d.ts +25 -0
- package/build/src/components/graphs/histogram.d.ts +12 -0
- package/build/src/components/graphs/line.d.ts +11 -0
- package/build/src/components/graphs/lollipop.d.ts +14 -0
- package/build/src/components/graphs/meter.d.ts +10 -0
- package/build/src/components/graphs/pie.d.ts +16 -0
- package/build/src/components/graphs/radar.d.ts +25 -0
- package/build/src/components/graphs/scatter-stacked.d.ts +8 -0
- package/build/src/components/graphs/scatter.d.ts +21 -0
- package/build/src/components/graphs/skeleton-lines.d.ts +11 -0
- package/build/src/components/graphs/skeleton.d.ts +22 -0
- package/build/src/components/graphs/tree.d.ts +9 -0
- package/build/src/components/graphs/treemap.d.ts +11 -0
- package/build/src/components/graphs/wordcloud.d.ts +12 -0
- package/build/src/components/index.d.ts +51 -0
- package/build/src/components/layout/layout.d.ts +17 -0
- package/build/src/components/layout/spacer.d.ts +5 -0
- package/build/src/configuration-non-customizable.d.ts +263 -0
- package/build/src/configuration.d.ts +44 -0
- package/build/src/interfaces/a11y.d.ts +12 -0
- package/build/src/interfaces/axis-scales.d.ts +190 -0
- package/build/src/interfaces/charts.d.ts +474 -0
- package/build/src/interfaces/components.d.ts +227 -0
- package/build/src/interfaces/enums.d.ts +249 -0
- package/build/src/interfaces/events.d.ts +230 -0
- package/{src/interfaces/index.ts → build/src/interfaces/index.d.ts} +0 -0
- package/build/src/interfaces/layout.d.ts +15 -0
- package/build/src/interfaces/model.d.ts +35 -0
- package/build/src/interfaces/truncation.d.ts +17 -0
- package/build/src/model/alluvial.d.ts +8 -0
- package/build/src/model/binned-charts.d.ts +7 -0
- package/build/src/model/boxplot.d.ts +14 -0
- package/build/src/model/bullet.d.ts +14 -0
- package/build/src/model/cartesian-charts.d.ts +24 -0
- package/build/src/model/circle-pack.d.ts +36 -0
- package/build/src/model/gauge.d.ts +9 -0
- package/build/src/model/heatmap.d.ts +57 -0
- package/build/src/model/meter.d.ts +19 -0
- package/build/src/model/model.d.ts +107 -0
- package/build/src/model/pie.d.ts +9 -0
- package/build/src/model/radar.d.ts +7 -0
- package/build/src/model/tree.d.ts +14 -0
- package/build/src/model/treemap.d.ts +8 -0
- package/build/src/model/wordcloud.d.ts +7 -0
- package/build/src/services/angle-utils.d.ts +205 -0
- package/build/src/services/canvas-zoom.d.ts +11 -0
- package/build/src/services/curves.d.ts +25 -0
- package/build/src/services/essentials/dom-utils.d.ts +38 -0
- package/build/src/services/essentials/events.d.ts +8 -0
- package/build/src/services/essentials/files.d.ts +6 -0
- package/build/src/services/essentials/gradient-utils.d.ts +6 -0
- package/build/src/services/essentials/transitions.d.ts +13 -0
- package/build/src/services/index.d.ts +9 -0
- package/build/src/services/scales-cartesian.d.ts +86 -0
- package/build/src/services/service.d.ts +10 -0
- package/build/src/services/time-series.d.ts +372 -0
- package/build/src/services/zoom.d.ts +21 -0
- package/build/src/tools.d.ts +158 -0
- package/build/stories/all.stories.d.ts +1 -0
- package/build/stories/tutorials/api.d.ts +4 -0
- package/build/stories/tutorials/color-palette.d.ts +4 -0
- package/build/stories/tutorials/combo-charts.d.ts +4 -0
- package/build/stories/tutorials/dual-axes.d.ts +4 -0
- package/build/stories/tutorials/event-listeners.d.ts +4 -0
- package/build/stories/tutorials/getting-started/angular.d.ts +5 -0
- package/build/stories/tutorials/getting-started/react.d.ts +5 -0
- package/build/stories/tutorials/getting-started/vanilla.d.ts +5 -0
- package/build/stories/tutorials/getting-started/vue.d.ts +5 -0
- package/build/stories/tutorials/index.d.ts +11 -0
- package/build/stories/tutorials/tabular-data-format.d.ts +4 -0
- package/build/stories/tutorials/themes.d.ts +4 -0
- package/build/stories/tutorials.stories.d.ts +1 -0
- package/{dist/bundle.js → bundle.js} +0 -0
- package/{dist/chart.d.ts → chart.d.ts} +0 -0
- package/{dist/chart.js → chart.js} +0 -0
- package/{dist/chart.js.map → chart.js.map} +0 -0
- package/{dist/charts → charts}/alluvial.d.ts +0 -0
- package/{dist/charts → charts}/alluvial.js +0 -0
- package/{dist/charts → charts}/alluvial.js.map +0 -0
- package/{dist/charts → charts}/area-stacked.d.ts +0 -0
- package/{dist/charts → charts}/area-stacked.js +0 -0
- package/{dist/charts → charts}/area-stacked.js.map +0 -0
- package/{dist/charts → charts}/area.d.ts +0 -0
- package/{dist/charts → charts}/area.js +0 -0
- package/{dist/charts → charts}/area.js.map +0 -0
- package/{dist/charts → charts}/bar-grouped.d.ts +0 -0
- package/{dist/charts → charts}/bar-grouped.js +0 -0
- package/{dist/charts → charts}/bar-grouped.js.map +0 -0
- package/{dist/charts → charts}/bar-simple.d.ts +0 -0
- package/{dist/charts → charts}/bar-simple.js +0 -0
- package/{dist/charts → charts}/bar-simple.js.map +0 -0
- package/{dist/charts → charts}/bar-stacked.d.ts +0 -0
- package/{dist/charts → charts}/bar-stacked.js +0 -0
- package/{dist/charts → charts}/bar-stacked.js.map +0 -0
- package/{dist/charts → charts}/boxplot.d.ts +0 -0
- package/{dist/charts → charts}/boxplot.js +0 -0
- package/{dist/charts → charts}/boxplot.js.map +0 -0
- package/{dist/charts → charts}/bubble.d.ts +0 -0
- package/{dist/charts → charts}/bubble.js +0 -0
- package/{dist/charts → charts}/bubble.js.map +0 -0
- package/{dist/charts → charts}/bullet.d.ts +0 -0
- package/{dist/charts → charts}/bullet.js +0 -0
- package/{dist/charts → charts}/bullet.js.map +0 -0
- package/{dist/charts → charts}/circle-pack.d.ts +0 -0
- package/{dist/charts → charts}/circle-pack.js +0 -0
- package/{dist/charts → charts}/circle-pack.js.map +0 -0
- package/{dist/charts → charts}/combo.d.ts +0 -0
- package/{dist/charts → charts}/combo.js +0 -0
- package/{dist/charts → charts}/combo.js.map +0 -0
- package/{dist/charts → charts}/donut.d.ts +0 -0
- package/{dist/charts → charts}/donut.js +0 -0
- package/{dist/charts → charts}/donut.js.map +0 -0
- package/{dist/charts → charts}/gauge.d.ts +0 -0
- package/{dist/charts → charts}/gauge.js +0 -0
- package/{dist/charts → charts}/gauge.js.map +0 -0
- package/{dist/charts → charts}/heatmap.d.ts +0 -0
- package/{dist/charts → charts}/heatmap.js +0 -0
- package/{dist/charts → charts}/heatmap.js.map +0 -0
- package/{dist/charts → charts}/histogram.d.ts +0 -0
- package/{dist/charts → charts}/histogram.js +0 -0
- package/{dist/charts → charts}/histogram.js.map +0 -0
- package/{dist/charts → charts}/index.d.ts +0 -0
- package/{dist/charts → charts}/index.js +0 -0
- package/{dist/charts → charts}/index.js.map +0 -0
- package/{dist/charts → charts}/line.d.ts +0 -0
- package/{dist/charts → charts}/line.js +0 -0
- package/{dist/charts → charts}/line.js.map +0 -0
- package/{dist/charts → charts}/lollipop.d.ts +0 -0
- package/{dist/charts → charts}/lollipop.js +0 -0
- package/{dist/charts → charts}/lollipop.js.map +0 -0
- package/{dist/charts → charts}/meter.d.ts +0 -0
- package/{dist/charts → charts}/meter.js +0 -0
- package/{dist/charts → charts}/meter.js.map +0 -0
- package/{dist/charts → charts}/pie.d.ts +0 -0
- package/{dist/charts → charts}/pie.js +0 -0
- package/{dist/charts → charts}/pie.js.map +0 -0
- package/{dist/charts → charts}/radar.d.ts +0 -0
- package/{dist/charts → charts}/radar.js +0 -0
- package/{dist/charts → charts}/radar.js.map +0 -0
- package/{dist/charts → charts}/scatter.d.ts +0 -0
- package/{dist/charts → charts}/scatter.js +0 -0
- package/{dist/charts → charts}/scatter.js.map +0 -0
- package/{dist/charts → charts}/tree.d.ts +0 -0
- package/{dist/charts → charts}/tree.js +0 -0
- package/{dist/charts → charts}/tree.js.map +0 -0
- package/{dist/charts → charts}/treemap.d.ts +0 -0
- package/{dist/charts → charts}/treemap.js +0 -0
- package/{dist/charts → charts}/treemap.js.map +0 -0
- package/{dist/charts → charts}/wordcloud.d.ts +0 -0
- package/{dist/charts → charts}/wordcloud.js +0 -0
- package/{dist/charts → charts}/wordcloud.js.map +0 -0
- package/{dist/components → components}/axes/axis.d.ts +0 -0
- package/{dist/components → components}/axes/axis.js +0 -0
- package/{dist/components → components}/axes/axis.js.map +0 -0
- package/{dist/components → components}/axes/chart-clip.d.ts +0 -0
- package/{dist/components → components}/axes/chart-clip.js +0 -0
- package/{dist/components → components}/axes/chart-clip.js.map +0 -0
- package/{dist/components → components}/axes/grid-brush.d.ts +0 -0
- package/{dist/components → components}/axes/grid-brush.js +0 -0
- package/{dist/components → components}/axes/grid-brush.js.map +0 -0
- package/{dist/components → components}/axes/grid.d.ts +0 -0
- package/{dist/components → components}/axes/grid.js +0 -0
- package/{dist/components → components}/axes/grid.js.map +0 -0
- package/{dist/components → components}/axes/hover-axis.d.ts +0 -0
- package/{dist/components → components}/axes/hover-axis.js +0 -0
- package/{dist/components → components}/axes/hover-axis.js.map +0 -0
- package/{dist/components → components}/axes/ruler-binned.d.ts +0 -0
- package/{dist/components → components}/axes/ruler-binned.js +0 -0
- package/{dist/components → components}/axes/ruler-binned.js.map +0 -0
- package/{dist/components → components}/axes/ruler-stacked.d.ts +0 -0
- package/{dist/components → components}/axes/ruler-stacked.js +0 -0
- package/{dist/components → components}/axes/ruler-stacked.js.map +0 -0
- package/{dist/components → components}/axes/ruler.d.ts +0 -0
- package/{dist/components → components}/axes/ruler.js +0 -0
- package/{dist/components → components}/axes/ruler.js.map +0 -0
- package/{dist/components → components}/axes/toolbar.d.ts +0 -0
- package/components/axes/toolbar.js +544 -0
- package/components/axes/toolbar.js.map +1 -0
- package/{dist/components → components}/axes/two-dimensional-axes.d.ts +0 -0
- package/{dist/components → components}/axes/two-dimensional-axes.js +0 -0
- package/{dist/components → components}/axes/two-dimensional-axes.js.map +0 -0
- package/{dist/components → components}/axes/zero-line.d.ts +0 -0
- package/{dist/components → components}/axes/zero-line.js +0 -0
- package/{dist/components → components}/axes/zero-line.js.map +0 -0
- package/{dist/components → components}/axes/zoom-bar.d.ts +0 -0
- package/{dist/components → components}/axes/zoom-bar.js +0 -0
- package/{dist/components → components}/axes/zoom-bar.js.map +0 -0
- package/{dist/components → components}/component.d.ts +0 -0
- package/components/component.js +102 -0
- package/components/component.js.map +1 -0
- package/{dist/components → components}/diagrams/buildPaths.d.ts +0 -0
- package/{dist/components → components}/diagrams/buildPaths.js +0 -0
- package/{dist/components → components}/diagrams/buildPaths.js.map +0 -0
- package/{dist/components → components}/diagrams/markerDefinitions.d.ts +0 -0
- package/{dist/components → components}/diagrams/markerDefinitions.js +0 -0
- package/{dist/components → components}/diagrams/markerDefinitions.js.map +0 -0
- package/{dist/components → components}/essentials/canvas-chart-clip.d.ts +0 -0
- package/{dist/components → components}/essentials/canvas-chart-clip.js +0 -0
- package/{dist/components → components}/essentials/canvas-chart-clip.js.map +0 -0
- package/{dist/components → components}/essentials/color-scale-legend.d.ts +0 -0
- package/{dist/components → components}/essentials/color-scale-legend.js +0 -0
- package/{dist/components → components}/essentials/color-scale-legend.js.map +0 -0
- package/{dist/components → components}/essentials/highlights.d.ts +0 -0
- package/{dist/components → components}/essentials/highlights.js +0 -0
- package/{dist/components → components}/essentials/highlights.js.map +0 -0
- package/{dist/components → components}/essentials/legend.d.ts +0 -0
- package/{dist/components → components}/essentials/legend.js +0 -0
- package/{dist/components → components}/essentials/legend.js.map +0 -0
- package/{dist/components → components}/essentials/modal.d.ts +0 -0
- package/components/essentials/modal.js +89 -0
- package/components/essentials/modal.js.map +1 -0
- package/{dist/components → components}/essentials/threshold.d.ts +0 -0
- package/components/essentials/threshold.js +304 -0
- package/components/essentials/threshold.js.map +1 -0
- package/{dist/components → components}/essentials/title-meter.d.ts +0 -0
- package/{dist/components → components}/essentials/title-meter.js +0 -0
- package/{dist/components → components}/essentials/title-meter.js.map +0 -0
- package/{dist/components → components}/essentials/title.d.ts +0 -0
- package/{dist/components → components}/essentials/title.js +0 -0
- package/{dist/components → components}/essentials/title.js.map +0 -0
- package/{dist/components → components}/essentials/tooltip-axis.d.ts +0 -0
- package/{dist/components → components}/essentials/tooltip-axis.js +0 -0
- package/{dist/components → components}/essentials/tooltip-axis.js.map +0 -0
- package/{dist/components → components}/essentials/tooltip.d.ts +0 -0
- package/components/essentials/tooltip.js +245 -0
- package/components/essentials/tooltip.js.map +1 -0
- package/{dist/components → components}/graphs/alluvial.d.ts +0 -0
- package/{dist/components → components}/graphs/alluvial.js +0 -0
- package/{dist/components → components}/graphs/alluvial.js.map +0 -0
- package/{dist/components → components}/graphs/area-stacked.d.ts +0 -0
- package/{dist/components → components}/graphs/area-stacked.js +0 -0
- package/{dist/components → components}/graphs/area-stacked.js.map +0 -0
- package/{dist/components → components}/graphs/area.d.ts +0 -0
- package/{dist/components → components}/graphs/area.js +0 -0
- package/{dist/components → components}/graphs/area.js.map +0 -0
- package/{dist/components → components}/graphs/bar-grouped.d.ts +0 -0
- package/{dist/components → components}/graphs/bar-grouped.js +0 -0
- package/{dist/components → components}/graphs/bar-grouped.js.map +0 -0
- package/{dist/components → components}/graphs/bar-simple.d.ts +0 -0
- package/{dist/components → components}/graphs/bar-simple.js +0 -0
- package/{dist/components → components}/graphs/bar-simple.js.map +0 -0
- package/{dist/components → components}/graphs/bar-stacked.d.ts +0 -0
- package/{dist/components → components}/graphs/bar-stacked.js +0 -0
- package/components/graphs/bar-stacked.js.map +1 -0
- package/{dist/components → components}/graphs/bar.d.ts +0 -0
- package/{dist/components → components}/graphs/bar.js +0 -0
- package/components/graphs/bar.js.map +1 -0
- package/{dist/components → components}/graphs/boxplot.d.ts +0 -0
- package/{dist/components → components}/graphs/boxplot.js +0 -0
- package/{dist/components → components}/graphs/boxplot.js.map +0 -0
- package/{dist/components → components}/graphs/bubble.d.ts +0 -0
- package/{dist/components → components}/graphs/bubble.js +0 -0
- package/{dist/components → components}/graphs/bubble.js.map +0 -0
- package/{dist/components → components}/graphs/bullet.d.ts +0 -0
- package/{dist/components → components}/graphs/bullet.js +0 -0
- package/{dist/components → components}/graphs/bullet.js.map +0 -0
- package/{dist/components → components}/graphs/circle-pack.d.ts +0 -0
- package/{dist/components → components}/graphs/circle-pack.js +0 -0
- package/{dist/components → components}/graphs/circle-pack.js.map +0 -0
- package/{dist/components → components}/graphs/donut.d.ts +0 -0
- package/{dist/components → components}/graphs/donut.js +0 -0
- package/{dist/components → components}/graphs/donut.js.map +0 -0
- package/{dist/components → components}/graphs/gauge.d.ts +0 -0
- package/{dist/components → components}/graphs/gauge.js +0 -0
- package/{dist/components → components}/graphs/gauge.js.map +0 -0
- package/{dist/components → components}/graphs/heatmap.d.ts +0 -0
- package/{dist/components → components}/graphs/heatmap.js +0 -0
- package/{dist/components → components}/graphs/heatmap.js.map +0 -0
- package/{dist/components → components}/graphs/histogram.d.ts +0 -0
- package/{dist/components → components}/graphs/histogram.js +0 -0
- package/{dist/components → components}/graphs/histogram.js.map +0 -0
- package/{dist/components → components}/graphs/line.d.ts +0 -0
- package/{dist/components → components}/graphs/line.js +0 -0
- package/{dist/components → components}/graphs/line.js.map +0 -0
- package/{dist/components → components}/graphs/lollipop.d.ts +0 -0
- package/{dist/components → components}/graphs/lollipop.js +0 -0
- package/{dist/components → components}/graphs/lollipop.js.map +0 -0
- package/{dist/components → components}/graphs/meter.d.ts +0 -0
- package/{dist/components → components}/graphs/meter.js +0 -0
- package/{dist/components → components}/graphs/meter.js.map +0 -0
- package/{dist/components → components}/graphs/pie.d.ts +0 -0
- package/{dist/components → components}/graphs/pie.js +0 -0
- package/{dist/components → components}/graphs/pie.js.map +0 -0
- package/{dist/components → components}/graphs/radar.d.ts +0 -0
- package/components/graphs/radar.js +737 -0
- package/components/graphs/radar.js.map +1 -0
- package/{dist/components → components}/graphs/scatter-stacked.d.ts +0 -0
- package/{dist/components → components}/graphs/scatter-stacked.js +0 -0
- package/{dist/components → components}/graphs/scatter-stacked.js.map +0 -0
- package/{dist/components → components}/graphs/scatter.d.ts +0 -0
- package/{dist/components → components}/graphs/scatter.js +0 -0
- package/{dist/components → components}/graphs/scatter.js.map +0 -0
- package/{dist/components → components}/graphs/skeleton-lines.d.ts +0 -0
- package/{dist/components → components}/graphs/skeleton-lines.js +0 -0
- package/{dist/components → components}/graphs/skeleton-lines.js.map +0 -0
- package/{dist/components → components}/graphs/skeleton.d.ts +0 -0
- package/{dist/components → components}/graphs/skeleton.js +0 -0
- package/{dist/components → components}/graphs/skeleton.js.map +0 -0
- package/{dist/components → components}/graphs/tree.d.ts +0 -0
- package/{dist/components → components}/graphs/tree.js +0 -0
- package/{dist/components → components}/graphs/tree.js.map +0 -0
- package/{dist/components → components}/graphs/treemap.d.ts +0 -0
- package/{dist/components → components}/graphs/treemap.js +0 -0
- package/{dist/components → components}/graphs/treemap.js.map +0 -0
- package/{dist/components → components}/graphs/wordcloud.d.ts +0 -0
- package/{dist/components → components}/graphs/wordcloud.js +0 -0
- package/{dist/components → components}/graphs/wordcloud.js.map +0 -0
- package/{dist/components → components}/index.d.ts +0 -0
- package/{dist/components → components}/index.js +0 -0
- package/{dist/components → components}/index.js.map +0 -0
- package/{dist/components → components}/layout/layout.d.ts +0 -0
- package/components/layout/layout.js +191 -0
- package/components/layout/layout.js.map +1 -0
- package/{dist/components → components}/layout/spacer.d.ts +0 -0
- package/{dist/components → components}/layout/spacer.js +0 -0
- package/{dist/components → components}/layout/spacer.js.map +0 -0
- package/{dist/configuration-non-customizable.d.ts → configuration-non-customizable.d.ts} +0 -0
- package/{dist/configuration-non-customizable.js → configuration-non-customizable.js} +0 -0
- package/configuration-non-customizable.js.map +1 -0
- package/{dist/configuration.d.ts → configuration.d.ts} +0 -0
- package/{dist/configuration.js → configuration.js} +0 -0
- package/{dist/configuration.js.map → configuration.js.map} +0 -0
- package/demo/create-codesandbox.d.ts +75 -0
- package/demo/create-codesandbox.js +171 -0
- package/demo/create-codesandbox.js.map +1 -0
- package/demo/data/CHART_TYPES.d.ts +123 -0
- package/{dist/demo → demo}/data/CHART_TYPES.js +0 -0
- package/{dist/demo → demo}/data/CHART_TYPES.js.map +0 -0
- package/demo/data/alluvial.d.ts +109 -0
- package/{dist/demo → demo}/data/alluvial.js +0 -0
- package/{dist/demo → demo}/data/alluvial.js.map +0 -0
- package/demo/data/area.d.ts +224 -0
- package/{dist/demo → demo}/data/area.js +0 -0
- package/{dist/demo → demo}/data/area.js.map +0 -0
- package/demo/data/bar.d.ts +617 -0
- package/{dist/demo → demo}/data/bar.js +0 -0
- package/{dist/demo → demo}/data/bar.js.map +0 -0
- package/demo/data/boxplot.d.ts +34 -0
- package/{dist/demo → demo}/data/boxplot.js +0 -0
- package/{dist/demo → demo}/data/boxplot.js.map +0 -0
- package/demo/data/bubble.d.ts +141 -0
- package/{dist/demo → demo}/data/bubble.js +0 -0
- package/{dist/demo → demo}/data/bubble.js.map +0 -0
- package/demo/data/bullet.d.ts +24 -0
- package/{dist/demo → demo}/data/bullet.js +0 -0
- package/{dist/demo → demo}/data/bullet.js.map +0 -0
- package/demo/data/bundle.js +1 -0
- package/demo/data/circle-pack.d.ts +91 -0
- package/{dist/demo → demo}/data/circle-pack.js +0 -0
- package/{dist/demo → demo}/data/circle-pack.js.map +0 -0
- package/demo/data/combo.d.ts +482 -0
- package/{dist/demo → demo}/data/combo.js +0 -0
- package/{dist/demo → demo}/data/combo.js.map +0 -0
- package/demo/data/donut.d.ts +64 -0
- package/{dist/demo → demo}/data/donut.js +0 -0
- package/{dist/demo → demo}/data/donut.js.map +0 -0
- package/demo/data/gauge.d.ts +40 -0
- package/{dist/demo → demo}/data/gauge.js +0 -0
- package/{dist/demo → demo}/data/gauge.js.map +0 -0
- package/demo/data/heatmap.d.ts +125 -0
- package/{dist/demo → demo}/data/heatmap.js +0 -0
- package/{dist/demo → demo}/data/heatmap.js.map +0 -0
- package/demo/data/high-scale.d.ts +1 -0
- package/{dist/demo → demo}/data/high-scale.js +0 -0
- package/{dist/demo → demo}/data/high-scale.js.map +0 -0
- package/demo/data/hightlight.d.ts +40 -0
- package/{dist/demo → demo}/data/hightlight.js +0 -0
- package/{dist/demo → demo}/data/hightlight.js.map +0 -0
- package/demo/data/histogram.d.ts +63 -0
- package/{dist/demo → demo}/data/histogram.js +0 -0
- package/{dist/demo → demo}/data/histogram.js.map +0 -0
- package/demo/data/index.d.ts +32 -0
- package/{dist/demo → demo}/data/index.js +0 -0
- package/{dist/demo → demo}/data/index.js.map +0 -0
- package/demo/data/line.d.ts +361 -0
- package/{dist/demo → demo}/data/line.js +0 -0
- package/{dist/demo → demo}/data/line.js.map +0 -0
- package/demo/data/lollipop.d.ts +39 -0
- package/{dist/demo → demo}/data/lollipop.js +0 -0
- package/{dist/demo → demo}/data/lollipop.js.map +0 -0
- package/demo/data/meter.d.ts +95 -0
- package/{dist/demo → demo}/data/meter.js +0 -0
- package/{dist/demo → demo}/data/meter.js.map +0 -0
- package/demo/data/pie.d.ts +46 -0
- package/{dist/demo → demo}/data/pie.js +0 -0
- package/{dist/demo → demo}/data/pie.js.map +0 -0
- package/demo/data/radar.d.ts +63 -0
- package/{dist/demo → demo}/data/radar.js +0 -0
- package/{dist/demo → demo}/data/radar.js.map +0 -0
- package/demo/data/scatter.d.ts +118 -0
- package/{dist/demo → demo}/data/scatter.js +0 -0
- package/{dist/demo → demo}/data/scatter.js.map +0 -0
- package/demo/data/step.d.ts +96 -0
- package/{dist/demo → demo}/data/step.js +0 -0
- package/{dist/demo → demo}/data/step.js.map +0 -0
- package/demo/data/time-series-axis.d.ts +368 -0
- package/{dist/demo → demo}/data/time-series-axis.js +0 -0
- package/{dist/demo → demo}/data/time-series-axis.js.map +0 -0
- package/demo/data/toolbar.d.ts +12 -0
- package/{dist/demo → demo}/data/toolbar.js +0 -0
- package/{dist/demo → demo}/data/toolbar.js.map +0 -0
- package/demo/data/tree.d.ts +30 -0
- package/{dist/demo → demo}/data/tree.js +0 -0
- package/{dist/demo → demo}/data/tree.js.map +0 -0
- package/demo/data/treemap.d.ts +15 -0
- package/{dist/demo → demo}/data/treemap.js +0 -0
- package/{dist/demo → demo}/data/treemap.js.map +0 -0
- package/demo/data/wordcloud.d.ts +14 -0
- package/{dist/demo → demo}/data/wordcloud.js +0 -0
- package/{dist/demo → demo}/data/wordcloud.js.map +0 -0
- package/demo/data/zoom-bar.d.ts +88 -0
- package/{dist/demo → demo}/data/zoom-bar.js +0 -0
- package/{dist/demo → demo}/data/zoom-bar.js.map +0 -0
- package/demo/styles.css +28262 -0
- package/demo/styles.css.map +1 -0
- package/demo/styles.min.css +1 -0
- package/demo/styles.min.css.map +1 -0
- package/demo/tsconfig.tsbuildinfo +2212 -0
- package/{dist/demo → demo}/utils.d.ts +0 -0
- package/{dist/demo → demo}/utils.js +0 -0
- package/demo/utils.js.map +1 -0
- package/{dist/index.d.ts → index.d.ts} +0 -0
- package/{dist/index.js → index.js} +0 -0
- package/{dist/index.js.map → index.js.map} +0 -0
- package/{dist/interfaces → interfaces}/a11y.d.ts +0 -0
- package/{dist/interfaces → interfaces}/a11y.js +0 -0
- package/{dist/interfaces → interfaces}/a11y.js.map +0 -0
- package/{dist/interfaces → interfaces}/axis-scales.d.ts +0 -0
- package/{dist/interfaces → interfaces}/axis-scales.js +0 -0
- package/{dist/interfaces → interfaces}/axis-scales.js.map +0 -0
- package/{dist/interfaces → interfaces}/charts.d.ts +0 -0
- package/{dist/interfaces → interfaces}/charts.js +0 -0
- package/{dist/interfaces → interfaces}/charts.js.map +0 -0
- package/{dist/interfaces → interfaces}/components.d.ts +0 -0
- package/{dist/interfaces → interfaces}/components.js +0 -0
- package/{dist/interfaces → interfaces}/components.js.map +0 -0
- package/{dist/interfaces → interfaces}/enums.d.ts +0 -0
- package/{dist/interfaces → interfaces}/enums.js +0 -0
- package/{dist/interfaces → interfaces}/enums.js.map +0 -0
- package/{dist/interfaces → interfaces}/events.d.ts +0 -0
- package/{dist/interfaces → interfaces}/events.js +0 -0
- package/{dist/interfaces → interfaces}/events.js.map +0 -0
- package/{dist/interfaces → interfaces}/index.d.ts +0 -0
- package/{dist/interfaces → interfaces}/index.js +0 -0
- package/{dist/interfaces → interfaces}/index.js.map +0 -0
- package/{dist/interfaces → interfaces}/layout.d.ts +0 -0
- package/{dist/interfaces → interfaces}/layout.js +0 -0
- package/{dist/interfaces → interfaces}/layout.js.map +0 -0
- package/{dist/interfaces → interfaces}/model.d.ts +0 -0
- package/{dist/interfaces → interfaces}/model.js +0 -0
- package/{dist/interfaces → interfaces}/model.js.map +0 -0
- package/{dist/interfaces → interfaces}/truncation.d.ts +0 -0
- package/{dist/interfaces → interfaces}/truncation.js +0 -0
- package/{dist/interfaces → interfaces}/truncation.js.map +0 -0
- package/{dist/model → model}/alluvial.d.ts +0 -0
- package/{dist/model → model}/alluvial.js +0 -0
- package/{dist/model → model}/alluvial.js.map +0 -0
- package/{dist/model → model}/binned-charts.d.ts +0 -0
- package/{dist/model → model}/binned-charts.js +0 -0
- package/{dist/model → model}/binned-charts.js.map +0 -0
- package/{dist/model → model}/boxplot.d.ts +0 -0
- package/{dist/model → model}/boxplot.js +0 -0
- package/{dist/model → model}/boxplot.js.map +0 -0
- package/{dist/model → model}/bullet.d.ts +0 -0
- package/{dist/model → model}/bullet.js +0 -0
- package/{dist/model → model}/bullet.js.map +0 -0
- package/{dist/model → model}/cartesian-charts.d.ts +0 -0
- package/{dist/model → model}/cartesian-charts.js +0 -0
- package/{dist/model → model}/cartesian-charts.js.map +0 -0
- package/{dist/model → model}/circle-pack.d.ts +0 -0
- package/{dist/model → model}/circle-pack.js +0 -0
- package/{dist/model → model}/circle-pack.js.map +0 -0
- package/{dist/model → model}/gauge.d.ts +0 -0
- package/{dist/model → model}/gauge.js +0 -0
- package/{dist/model → model}/gauge.js.map +0 -0
- package/{dist/model → model}/heatmap.d.ts +0 -0
- package/{dist/model → model}/heatmap.js +0 -0
- package/{dist/model → model}/heatmap.js.map +0 -0
- package/{dist/model → model}/meter.d.ts +0 -0
- package/{dist/model → model}/meter.js +0 -0
- package/{dist/model → model}/meter.js.map +0 -0
- package/{dist/model → model}/model.d.ts +0 -0
- package/{dist/model → model}/model.js +0 -0
- package/{dist/model → model}/model.js.map +0 -0
- package/{dist/model → model}/pie.d.ts +0 -0
- package/{dist/model → model}/pie.js +0 -0
- package/{dist/model → model}/pie.js.map +0 -0
- package/{dist/model → model}/radar.d.ts +0 -0
- package/{dist/model → model}/radar.js +0 -0
- package/{dist/model → model}/radar.js.map +0 -0
- package/{dist/model → model}/tree.d.ts +0 -0
- package/{dist/model → model}/tree.js +0 -0
- package/{dist/model → model}/tree.js.map +0 -0
- package/{dist/model → model}/treemap.d.ts +0 -0
- package/model/treemap.js +44 -0
- package/model/treemap.js.map +1 -0
- package/{dist/model → model}/wordcloud.d.ts +0 -0
- package/{dist/model → model}/wordcloud.js +0 -0
- package/{dist/model → model}/wordcloud.js.map +0 -0
- package/package.json +146 -146
- package/{demo/dist/src/polyfills.d.ts → polyfills.d.ts} +0 -0
- package/{dist/polyfills.js → polyfills.js} +0 -0
- package/{dist/polyfills.js.map → polyfills.js.map} +0 -0
- package/{dist/services → services}/angle-utils.d.ts +0 -0
- package/{dist/services → services}/angle-utils.js +0 -0
- package/{dist/services → services}/angle-utils.js.map +0 -0
- package/{dist/services → services}/canvas-zoom.d.ts +0 -0
- package/{dist/services → services}/canvas-zoom.js +0 -0
- package/{dist/services → services}/canvas-zoom.js.map +0 -0
- package/{dist/services → services}/curves.d.ts +0 -0
- package/{dist/services → services}/curves.js +0 -0
- package/{dist/services → services}/curves.js.map +0 -0
- package/{dist/services → services}/essentials/dom-utils.d.ts +0 -0
- package/services/essentials/dom-utils.js +405 -0
- package/services/essentials/dom-utils.js.map +1 -0
- package/{dist/services → services}/essentials/events.d.ts +0 -0
- package/{dist/services → services}/essentials/events.js +0 -0
- package/{dist/services → services}/essentials/events.js.map +0 -0
- package/{dist/services → services}/essentials/files.d.ts +0 -0
- package/{dist/services → services}/essentials/files.js +0 -0
- package/{dist/services → services}/essentials/files.js.map +0 -0
- package/{dist/services → services}/essentials/gradient-utils.d.ts +0 -0
- package/{dist/services → services}/essentials/gradient-utils.js +0 -0
- package/{dist/services → services}/essentials/gradient-utils.js.map +0 -0
- package/{dist/services → services}/essentials/transitions.d.ts +0 -0
- package/{dist/services → services}/essentials/transitions.js +0 -0
- package/{dist/services → services}/essentials/transitions.js.map +0 -0
- package/{dist/services → services}/index.d.ts +0 -0
- package/{dist/services → services}/index.js +0 -0
- package/{dist/services → services}/index.js.map +0 -0
- package/{dist/services → services}/scales-cartesian.d.ts +0 -0
- package/{dist/services → services}/scales-cartesian.js +0 -0
- package/{dist/services → services}/scales-cartesian.js.map +0 -0
- package/{dist/services → services}/service.d.ts +0 -0
- package/{dist/services → services}/service.js +0 -0
- package/{dist/services → services}/service.js.map +0 -0
- package/{dist/services → services}/time-series.d.ts +0 -0
- package/{dist/services → services}/time-series.js +0 -0
- package/{dist/services → services}/time-series.js.map +0 -0
- package/{dist/services → services}/zoom.d.ts +0 -0
- package/{dist/services → services}/zoom.js +0 -0
- package/{dist/services → services}/zoom.js.map +0 -0
- package/styles/_chart-holder.scss +50 -0
- package/{dist/styles → styles}/_type.scss +0 -0
- package/styles/color-palatte.scss +362 -0
- package/styles/colors.scss +140 -0
- package/styles/components/_axis.scss +52 -0
- package/{dist/styles → styles}/components/_callouts.scss +0 -0
- package/{dist/styles → styles}/components/_color-legend.scss +0 -0
- package/styles/components/_edge.scss +65 -0
- package/{dist/styles → styles}/components/_grid-brush.scss +0 -0
- package/{dist/styles → styles}/components/_grid.scss +0 -0
- package/{dist/styles → styles}/components/_highlights.scss +0 -0
- package/{dist/styles → styles}/components/_layout.scss +0 -0
- package/{dist/styles → styles}/components/_legend.scss +0 -0
- package/styles/components/_marker.scss +7 -0
- package/{dist/styles → styles}/components/_meter-title.scss +0 -0
- package/styles/components/_modal.scss +48 -0
- package/{dist/styles → styles}/components/_ruler.scss +0 -0
- package/styles/components/_skeleton-lines.scss +36 -0
- package/{dist/styles → styles}/components/_skeleton.scss +0 -0
- package/{dist/styles → styles}/components/_threshold.scss +0 -0
- package/{dist/styles → styles}/components/_title.scss +0 -0
- package/{dist/styles → styles}/components/_toolbar.scss +0 -0
- package/styles/components/_tooltip.scss +123 -0
- package/{dist/styles → styles}/components/_zero-line.scss +0 -0
- package/{dist/styles → styles}/components/_zoom-bar.scss +0 -0
- package/styles/components/diagrams/_card-node.scss +97 -0
- package/styles/components/diagrams/_edge.scss +66 -0
- package/{dist/styles → styles}/components/diagrams/_marker.scss +0 -0
- package/styles/components/diagrams/_shape-node.scss +89 -0
- package/styles/components/diagrams/index.scss +4 -0
- package/{dist/styles → styles}/components/index.scss +0 -0
- package/{dist/styles → styles}/graphs/_alluvial.scss +0 -0
- package/{dist/styles → styles}/graphs/_area.scss +0 -0
- package/{dist/styles → styles}/graphs/_bubble.scss +0 -0
- package/{dist/styles → styles}/graphs/_bullet.scss +0 -0
- package/{dist/styles → styles}/graphs/_circle-pack.scss +0 -0
- package/{dist/styles → styles}/graphs/_donut.scss +0 -0
- package/{dist/styles → styles}/graphs/_gauge.scss +0 -0
- package/{dist/styles → styles}/graphs/_heatmap.scss +0 -0
- package/{dist/styles → styles}/graphs/_line.scss +0 -0
- package/{dist/styles → styles}/graphs/_lollipop.scss +0 -0
- package/{dist/styles → styles}/graphs/_meter.scss +0 -0
- package/{dist/styles → styles}/graphs/_pie.scss +0 -0
- package/{dist/styles → styles}/graphs/_radar.scss +0 -0
- package/{dist/styles → styles}/graphs/_scatter-stacked.scss +0 -0
- package/{dist/styles → styles}/graphs/_scatter.scss +0 -0
- package/{dist/styles → styles}/graphs/_tree.scss +0 -0
- package/{dist/styles → styles}/graphs/_treemap.scss +0 -0
- package/{dist/styles → styles}/graphs/_wordcloud.scss +0 -0
- package/{dist/styles → styles}/graphs/index.scss +0 -0
- package/styles/styles.scss +35 -0
- package/styles/tokens.scss +416 -0
- package/styles.css +6258 -0
- package/styles.css.map +1 -0
- package/styles.min.css +1 -0
- package/styles.min.css.map +1 -0
- package/{dist/tools.d.ts → tools.d.ts} +0 -0
- package/{dist/tools.js → tools.js} +0 -0
- package/{dist/tools.js.map → tools.js.map} +0 -0
- package/tsconfig.tsbuildinfo +4699 -0
- package/.prettierignore +0 -3
- package/.storybook/addons.js +0 -2
- package/.storybook/assets/logo.svg +0 -1
- package/.storybook/assets/share.png +0 -0
- package/.storybook/assets/welcome.png +0 -0
- package/.storybook/config.js +0 -21
- package/.storybook/main.js +0 -30
- package/.storybook/manager-head.html +0 -42
- package/.storybook/preview-head.html +0 -10
- package/.storybook/theme.ARCHIVE +0 -46
- package/build.sh +0 -41
- package/carbon.yml +0 -534
- package/custom.d.ts +0 -5
- package/demo/bundle/favicon.ico +0 -0
- package/demo/bundle/index.html +0 -22
- package/demo/bundle/logo.svg +0 -1
- package/demo/bundle/main.df2f79564d91565e3cbd.bundle.js +0 -1
- package/demo/bundle/runtime~main.6b70b35614cf83eab770.bundle.js +0 -1
- package/demo/bundle/sb_dll/storybook_ui-manifest.json +0 -1
- package/demo/bundle/sb_dll/storybook_ui_dll.LICENCE +0 -113
- package/demo/bundle/sb_dll/storybook_ui_dll.js +0 -2
- package/demo/bundle/share.png +0 -0
- package/demo/bundle/vendors~main.fa56568adce9c209e146.bundle.js +0 -111
- package/demo/bundle/welcome.png +0 -0
- package/demo/create-codesandbox.ts +0 -421
- package/demo/data/CHART_TYPES.ts +0 -122
- package/demo/data/alluvial.ts +0 -334
- package/demo/data/area.ts +0 -345
- package/demo/data/bar.ts +0 -783
- package/demo/data/boxplot.ts +0 -49
- package/demo/data/bubble.ts +0 -191
- package/demo/data/bullet.ts +0 -55
- package/demo/data/circle-pack.ts +0 -232
- package/demo/data/combo.ts +0 -593
- package/demo/data/donut.ts +0 -66
- package/demo/data/gauge.ts +0 -44
- package/demo/data/heatmap.ts +0 -1151
- package/demo/data/high-scale.ts +0 -7
- package/demo/data/hightlight.ts +0 -48
- package/demo/data/histogram.ts +0 -316
- package/demo/data/index.ts +0 -1294
- package/demo/data/line.ts +0 -502
- package/demo/data/lollipop.ts +0 -39
- package/demo/data/meter.ts +0 -119
- package/demo/data/pie.ts +0 -61
- package/demo/data/radar.ts +0 -121
- package/demo/data/scatter.ts +0 -152
- package/demo/data/step.ts +0 -37
- package/demo/data/time-series-axis.ts +0 -468
- package/demo/data/toolbar.ts +0 -80
- package/demo/data/tree.ts +0 -210
- package/demo/data/treemap.ts +0 -93
- package/demo/data/wordcloud.ts +0 -105
- package/demo/data/zoom-bar.ts +0 -238
- package/demo/dist/demo/chart-types.d.ts +0 -5
- package/demo/dist/demo/demo-data/bar.d.ts +0 -106
- package/demo/dist/demo/demo-data/colors.d.ts +0 -1
- package/demo/dist/demo/demo-data/index.d.ts +0 -4
- package/demo/dist/demo/demo-data/line.d.ts +0 -105
- package/demo/dist/demo/demo-data/pie-donut.d.ts +0 -27
- package/demo/dist/demo/demo-options.d.ts +0 -2
- package/demo/dist/demo/index.d.ts +0 -1
- package/demo/dist/src/axis-chart.d.ts +0 -8
- package/demo/dist/src/chart.d.ts +0 -14
- package/demo/dist/src/charts/bar-grouped.d.ts +0 -6
- package/demo/dist/src/charts/bar-simple.d.ts +0 -8
- package/demo/dist/src/charts/bar-stacked.d.ts +0 -6
- package/demo/dist/src/charts/donut.d.ts +0 -6
- package/demo/dist/src/charts/index.d.ts +0 -7
- package/demo/dist/src/charts/line.d.ts +0 -6
- package/demo/dist/src/charts/pie.d.ts +0 -8
- package/demo/dist/src/charts/scatter.d.ts +0 -6
- package/demo/dist/src/components/axes/axis.d.ts +0 -17
- package/demo/dist/src/components/axes/grid.d.ts +0 -24
- package/demo/dist/src/components/axes/horizontal-zero-line.d.ts +0 -5
- package/demo/dist/src/components/axes/two-dimensional-axes.d.ts +0 -12
- package/demo/dist/src/components/component.d.ts +0 -17
- package/demo/dist/src/components/essentials/legend.d.ts +0 -11
- package/demo/dist/src/components/essentials/title.d.ts +0 -17
- package/demo/dist/src/components/essentials/tooltip-bar.d.ts +0 -27
- package/demo/dist/src/components/essentials/tooltip-scatter.d.ts +0 -5
- package/demo/dist/src/components/essentials/tooltip.d.ts +0 -22
- package/demo/dist/src/components/graphs/bar-grouped.d.ts +0 -16
- package/demo/dist/src/components/graphs/bar-simple.d.ts +0 -11
- package/demo/dist/src/components/graphs/bar-stacked.d.ts +0 -11
- package/demo/dist/src/components/graphs/bar.d.ts +0 -4
- package/demo/dist/src/components/graphs/donut.d.ts +0 -7
- package/demo/dist/src/components/graphs/line.d.ts +0 -7
- package/demo/dist/src/components/graphs/pie.d.ts +0 -15
- package/demo/dist/src/components/graphs/scatter.d.ts +0 -11
- package/demo/dist/src/components/index.d.ts +0 -18
- package/demo/dist/src/components/layout/layout.d.ts +0 -17
- package/demo/dist/src/configuration.d.ts +0 -61
- package/demo/dist/src/index.d.ts +0 -6
- package/demo/dist/src/interfaces/axis-scales.d.ts +0 -57
- package/demo/dist/src/interfaces/charts.d.ts +0 -143
- package/demo/dist/src/interfaces/components.d.ts +0 -127
- package/demo/dist/src/interfaces/enums.d.ts +0 -87
- package/demo/dist/src/interfaces/index.d.ts +0 -6
- package/demo/dist/src/interfaces/layout.d.ts +0 -7
- package/demo/dist/src/interfaces/model.d.ts +0 -34
- package/demo/dist/src/model-pie.d.ts +0 -12
- package/demo/dist/src/model-simple-bar.d.ts +0 -11
- package/demo/dist/src/model.d.ts +0 -51
- package/demo/dist/src/services/axes.d.ts +0 -9
- package/demo/dist/src/services/colorPalettes.d.ts +0 -6
- package/demo/dist/src/services/colors.d.ts +0 -10
- package/demo/dist/src/services/curves.d.ts +0 -25
- package/demo/dist/src/services/essentials/dom-utils.d.ts +0 -16
- package/demo/dist/src/services/essentials/events.d.ts +0 -8
- package/demo/dist/src/services/essentials/transitions.d.ts +0 -9
- package/demo/dist/src/services/index.d.ts +0 -5
- package/demo/dist/src/services/service.d.ts +0 -10
- package/demo/dist/src/tools.d.ts +0 -92
- package/demo/resource-card.scss +0 -125
- package/demo/styles.scss +0 -466
- package/demo/tsconfig.json +0 -19
- package/demo/utils.ts +0 -326
- package/dist/CHANGELOG.md +0 -2872
- package/dist/README.md +0 -52
- package/dist/components/axes/toolbar.js +0 -543
- package/dist/components/axes/toolbar.js.map +0 -1
- package/dist/components/component.js +0 -102
- package/dist/components/component.js.map +0 -1
- package/dist/components/essentials/modal.js +0 -89
- package/dist/components/essentials/modal.js.map +0 -1
- package/dist/components/essentials/threshold.js +0 -304
- package/dist/components/essentials/threshold.js.map +0 -1
- package/dist/components/essentials/tooltip.js +0 -245
- package/dist/components/essentials/tooltip.js.map +0 -1
- package/dist/components/graphs/bar-stacked.js.map +0 -1
- package/dist/components/graphs/bar.js.map +0 -1
- package/dist/components/graphs/radar.js +0 -730
- package/dist/components/graphs/radar.js.map +0 -1
- package/dist/components/layout/layout.js +0 -191
- package/dist/components/layout/layout.js.map +0 -1
- package/dist/configuration-non-customizable.js.map +0 -1
- package/dist/demo/create-codesandbox.d.ts +0 -71
- package/dist/demo/create-codesandbox.js +0 -165
- package/dist/demo/create-codesandbox.js.map +0 -1
- package/dist/demo/data/bundle.js +0 -1
- package/dist/demo/styles.css +0 -27818
- package/dist/demo/styles.css.map +0 -1
- package/dist/demo/styles.min.css +0 -1
- package/dist/demo/styles.min.css.map +0 -1
- package/dist/demo/tsconfig.tsbuildinfo +0 -3740
- package/dist/demo/utils.js.map +0 -1
- package/dist/model/treemap.js +0 -44
- package/dist/model/treemap.js.map +0 -1
- package/dist/package.json +0 -147
- package/dist/polyfills.d.ts +0 -0
- package/dist/services/essentials/dom-utils.js +0 -405
- package/dist/services/essentials/dom-utils.js.map +0 -1
- package/dist/styles/_chart-holder.scss +0 -52
- package/dist/styles/color-palatte.scss +0 -362
- package/dist/styles/colors.scss +0 -131
- package/dist/styles/components/_axis.scss +0 -52
- package/dist/styles/components/_card.scss +0 -101
- package/dist/styles/components/_circle.scss +0 -49
- package/dist/styles/components/_edge.scss +0 -67
- package/dist/styles/components/_marker.scss +0 -8
- package/dist/styles/components/_modal.scss +0 -48
- package/dist/styles/components/_skeleton-lines.scss +0 -36
- package/dist/styles/components/_tooltip.scss +0 -123
- package/dist/styles/components/diagrams/_card-node.scss +0 -97
- package/dist/styles/components/diagrams/_edge.scss +0 -66
- package/dist/styles/components/diagrams/_shape-node.scss +0 -89
- package/dist/styles/components/diagrams/index.scss +0 -4
- package/dist/styles/styles.scss +0 -35
- package/dist/styles/tokens.scss +0 -373
- package/dist/styles.css +0 -6202
- package/dist/styles.css.map +0 -1
- package/dist/styles.min.css +0 -1
- package/dist/styles.min.css.map +0 -1
- package/dist/tsconfig.tsbuildinfo +0 -4699
- package/karma.conf.js +0 -99
- package/rollup.config.js +0 -55
- package/rollup.demo.js +0 -43
- package/src/axis-chart.ts +0 -237
- package/src/chart.ts +0 -292
- package/src/charts/alluvial.ts +0 -53
- package/src/charts/area-stacked.ts +0 -58
- package/src/charts/area.ts +0 -61
- package/src/charts/bar-grouped.ts +0 -55
- package/src/charts/bar-simple.ts +0 -55
- package/src/charts/bar-stacked.ts +0 -57
- package/src/charts/boxplot.ts +0 -65
- package/src/charts/bubble.ts +0 -58
- package/src/charts/bullet.ts +0 -58
- package/src/charts/circle-pack.ts +0 -49
- package/src/charts/combo.ts +0 -163
- package/src/charts/donut.ts +0 -46
- package/src/charts/gauge.ts +0 -37
- package/src/charts/heatmap.ts +0 -191
- package/src/charts/histogram.ts +0 -59
- package/src/charts/line.ts +0 -57
- package/src/charts/lollipop.ts +0 -60
- package/src/charts/meter.ts +0 -104
- package/src/charts/pie.ts +0 -60
- package/src/charts/radar.ts +0 -45
- package/src/charts/scatter.ts +0 -58
- package/src/charts/tree.ts +0 -51
- package/src/charts/treemap.ts +0 -47
- package/src/charts/wordcloud.ts +0 -53
- package/src/components/axes/axis.ts +0 -819
- package/src/components/axes/chart-clip.ts +0 -60
- package/src/components/axes/grid-brush.ts +0 -187
- package/src/components/axes/grid.ts +0 -309
- package/src/components/axes/hover-axis.ts +0 -266
- package/src/components/axes/ruler-binned.ts +0 -160
- package/src/components/axes/ruler-stacked.ts +0 -7
- package/src/components/axes/ruler.ts +0 -274
- package/src/components/axes/toolbar.ts +0 -668
- package/src/components/axes/two-dimensional-axes.ts +0 -143
- package/src/components/axes/zero-line.ts +0 -71
- package/src/components/axes/zoom-bar.ts +0 -741
- package/src/components/component.ts +0 -163
- package/src/components/diagrams/buildPaths.ts +0 -82
- package/src/components/diagrams/markerDefinitions.ts +0 -43
- package/src/components/essentials/canvas-chart-clip.ts +0 -38
- package/src/components/essentials/color-scale-legend.ts +0 -347
- package/src/components/essentials/highlights.ts +0 -215
- package/src/components/essentials/legend.spec.ts +0 -61
- package/src/components/essentials/legend.ts +0 -537
- package/src/components/essentials/modal.ts +0 -143
- package/src/components/essentials/threshold.ts +0 -386
- package/src/components/essentials/title-meter.ts +0 -395
- package/src/components/essentials/title.spec.ts +0 -48
- package/src/components/essentials/title.ts +0 -135
- package/src/components/essentials/tooltip-axis.ts +0 -136
- package/src/components/essentials/tooltip.ts +0 -373
- package/src/components/graphs/alluvial.ts +0 -724
- package/src/components/graphs/area-stacked.ts +0 -154
- package/src/components/graphs/area.ts +0 -326
- package/src/components/graphs/bar-grouped.ts +0 -369
- package/src/components/graphs/bar-simple.ts +0 -253
- package/src/components/graphs/bar-stacked.ts +0 -338
- package/src/components/graphs/bar.ts +0 -50
- package/src/components/graphs/boxplot.ts +0 -595
- package/src/components/graphs/bubble.ts +0 -128
- package/src/components/graphs/bullet.ts +0 -492
- package/src/components/graphs/circle-pack.ts +0 -489
- package/src/components/graphs/donut.ts +0 -124
- package/src/components/graphs/gauge.ts +0 -484
- package/src/components/graphs/heatmap.ts +0 -473
- package/src/components/graphs/histogram.ts +0 -263
- package/src/components/graphs/line.ts +0 -203
- package/src/components/graphs/lollipop.ts +0 -212
- package/src/components/graphs/meter.ts +0 -339
- package/src/components/graphs/pie.ts +0 -526
- package/src/components/graphs/radar.ts +0 -1027
- package/src/components/graphs/scatter-stacked.ts +0 -162
- package/src/components/graphs/scatter.ts +0 -513
- package/src/components/graphs/skeleton-lines.ts +0 -95
- package/src/components/graphs/skeleton.ts +0 -352
- package/src/components/graphs/tree.ts +0 -297
- package/src/components/graphs/treemap.ts +0 -413
- package/src/components/graphs/wordcloud.ts +0 -303
- package/src/components/index.ts +0 -61
- package/src/components/layout/layout.ts +0 -260
- package/src/components/layout/spacer.ts +0 -20
- package/src/configuration-non-customizable.ts +0 -295
- package/src/configuration.ts +0 -640
- package/src/index.ts +0 -7
- package/src/interfaces/a11y.ts +0 -12
- package/src/interfaces/axis-scales.ts +0 -198
- package/src/interfaces/charts.ts +0 -553
- package/src/interfaces/components.ts +0 -251
- package/src/interfaces/enums.ts +0 -279
- package/src/interfaces/events.ts +0 -256
- package/src/interfaces/layout.ts +0 -16
- package/src/interfaces/model.ts +0 -39
- package/src/interfaces/truncation.ts +0 -17
- package/src/model/alluvial.ts +0 -29
- package/src/model/binned-charts.ts +0 -33
- package/src/model/boxplot.ts +0 -194
- package/src/model/bullet.ts +0 -66
- package/src/model/cartesian-charts.ts +0 -236
- package/src/model/circle-pack.ts +0 -207
- package/src/model/gauge.ts +0 -33
- package/src/model/heatmap.ts +0 -337
- package/src/model/meter.ts +0 -124
- package/src/model/model.ts +0 -886
- package/src/model/pie.ts +0 -52
- package/src/model/radar.ts +0 -46
- package/src/model/tree.ts +0 -42
- package/src/model/treemap.ts +0 -33
- package/src/model/wordcloud.ts +0 -29
- package/src/polyfills.ts +0 -40
- package/src/selectedGroups.spec.ts +0 -56
- package/src/services/angle-utils.ts +0 -100
- package/src/services/canvas-zoom.ts +0 -69
- package/src/services/curves.ts +0 -92
- package/src/services/essentials/dom-utils.ts +0 -500
- package/src/services/essentials/events.ts +0 -40
- package/src/services/essentials/files.ts +0 -55
- package/src/services/essentials/gradient-utils.ts +0 -74
- package/src/services/essentials/transitions.ts +0 -44
- package/src/services/index.ts +0 -12
- package/src/services/scales-cartesian.ts +0 -904
- package/src/services/service.ts +0 -31
- package/src/services/time-series.spec.ts +0 -332
- package/src/services/time-series.ts +0 -175
- package/src/services/zoom.ts +0 -294
- package/src/styles/_chart-holder.scss +0 -50
- package/src/styles/_type.scss +0 -44
- package/src/styles/color-palatte.scss +0 -362
- package/src/styles/colors.scss +0 -131
- package/src/styles/components/_axis.scss +0 -52
- package/src/styles/components/_callouts.scss +0 -5
- package/src/styles/components/_card.scss +0 -101
- package/src/styles/components/_circle.scss +0 -49
- package/src/styles/components/_color-legend.scss +0 -11
- package/src/styles/components/_edge.scss +0 -67
- package/src/styles/components/_grid-brush.scss +0 -20
- package/src/styles/components/_grid.scss +0 -30
- package/src/styles/components/_highlights.scss +0 -7
- package/src/styles/components/_layout.scss +0 -35
- package/src/styles/components/_legend.scss +0 -97
- package/src/styles/components/_marker.scss +0 -8
- package/src/styles/components/_meter-title.scss +0 -37
- package/src/styles/components/_modal.scss +0 -48
- package/src/styles/components/_ruler.scss +0 -9
- package/src/styles/components/_skeleton-lines.scss +0 -36
- package/src/styles/components/_skeleton.scss +0 -50
- package/src/styles/components/_threshold.scss +0 -53
- package/src/styles/components/_title.scss +0 -22
- package/src/styles/components/_toolbar.scss +0 -60
- package/src/styles/components/_tooltip.scss +0 -123
- package/src/styles/components/_zero-line.scss +0 -5
- package/src/styles/components/_zoom-bar.scss +0 -53
- package/src/styles/components/diagrams/_card-node.scss +0 -97
- package/src/styles/components/diagrams/_edge.scss +0 -66
- package/src/styles/components/diagrams/_marker.scss +0 -7
- package/src/styles/components/diagrams/_shape-node.scss +0 -89
- package/src/styles/components/diagrams/index.scss +0 -4
- package/src/styles/components/index.scss +0 -20
- package/src/styles/graphs/_alluvial.scss +0 -17
- package/src/styles/graphs/_area.scss +0 -4
- package/src/styles/graphs/_bubble.scss +0 -18
- package/src/styles/graphs/_bullet.scss +0 -36
- package/src/styles/graphs/_circle-pack.scss +0 -36
- package/src/styles/graphs/_donut.scss +0 -3
- package/src/styles/graphs/_gauge.scss +0 -23
- package/src/styles/graphs/_heatmap.scss +0 -60
- package/src/styles/graphs/_line.scss +0 -28
- package/src/styles/graphs/_lollipop.scss +0 -9
- package/src/styles/graphs/_meter.scss +0 -34
- package/src/styles/graphs/_pie.scss +0 -3
- package/src/styles/graphs/_radar.scss +0 -18
- package/src/styles/graphs/_scatter-stacked.scss +0 -12
- package/src/styles/graphs/_scatter.scss +0 -23
- package/src/styles/graphs/_tree.scss +0 -47
- package/src/styles/graphs/_treemap.scss +0 -5
- package/src/styles/graphs/_wordcloud.scss +0 -9
- package/src/styles/graphs/index.scss +0 -18
- package/src/styles/styles.scss +0 -35
- package/src/styles/tokens.scss +0 -373
- package/src/tests/index.ts +0 -1
- package/src/tests/test-environment.ts +0 -43
- package/src/tests/tools.ts +0 -17
- package/src/tools.spec.ts +0 -98
- package/src/tools.ts +0 -488
- package/src/tsconfig.json +0 -8
- package/stories/all.stories.ts +0 -139
- package/stories/tutorials/api.ts +0 -72
- package/stories/tutorials/color-palette.ts +0 -80
- package/stories/tutorials/combo-charts.ts +0 -114
- package/stories/tutorials/dual-axes.ts +0 -54
- package/stories/tutorials/event-listeners.ts +0 -31
- package/stories/tutorials/getting-started/angular.ts +0 -142
- package/stories/tutorials/getting-started/react.ts +0 -10
- package/stories/tutorials/getting-started/vanilla.ts +0 -149
- package/stories/tutorials/getting-started/vue.ts +0 -121
- package/stories/tutorials/index.ts +0 -14
- package/stories/tutorials/tabular-data-format.ts +0 -134
- package/stories/tutorials/themes.ts +0 -10
- package/stories/tutorials.stories.ts +0 -42
- package/tsconfig.json +0 -28
- package/tslint.json +0 -100
- package/yarn-error.log +0 -21024
package/dist/CHANGELOG.md
DELETED
|
@@ -1,2872 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [0.58.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.58.0...v0.58.1) (2022-05-19)
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @carbon/charts
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
# [0.58.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.57.1...v0.58.0) (2022-05-16)
|
|
15
|
-
|
|
16
|
-
**Note:** Version bump only for package @carbon/charts
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
## [0.57.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.57.0...v0.57.1) (2022-05-06)
|
|
23
|
-
|
|
24
|
-
**Note:** Version bump only for package @carbon/charts
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
# [0.57.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.56.0...v0.57.0) (2022-04-11)
|
|
31
|
-
|
|
32
|
-
**Note:** Version bump only for package @carbon/charts
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
# [0.56.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.55.1...v0.56.0) (2022-03-28)
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
### Features
|
|
42
|
-
|
|
43
|
-
* **core:** add alignment option to alluvial ([#1305](https://github.com/carbon-design-system/carbon-charts/issues/1305)) ([61ad7d4](https://github.com/carbon-design-system/carbon-charts/commit/61ad7d4d6a80b56187310b8062f206f3a5c49c55))
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
## [0.55.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.55.0...v0.55.1) (2022-03-14)
|
|
50
|
-
|
|
51
|
-
**Note:** Version bump only for package @carbon/charts
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
# [0.55.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.14...v0.55.0) (2022-03-14)
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
### Features
|
|
61
|
-
|
|
62
|
-
* **core:** add v11 classnames to modal & overflow menu ([#1329](https://github.com/carbon-design-system/carbon-charts/issues/1329)) ([f79c4ac](https://github.com/carbon-design-system/carbon-charts/commit/f79c4ac389bf3c1456ff92aa374669a26c743d63))
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
## [0.54.14](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.13...v0.54.14) (2022-03-14)
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
### Bug Fixes
|
|
72
|
-
|
|
73
|
-
* **core:** enable heatmap value domain to support small values ([#1325](https://github.com/carbon-design-system/carbon-charts/issues/1325)) ([378845c](https://github.com/carbon-design-system/carbon-charts/commit/378845c040681e9a528357487cd60352777b95d3)), closes [#1321](https://github.com/carbon-design-system/carbon-charts/issues/1321) [#1326](https://github.com/carbon-design-system/carbon-charts/issues/1326)
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
## [0.54.13](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.12...v0.54.13) (2022-03-09)
|
|
80
|
-
|
|
81
|
-
**Note:** Version bump only for package @carbon/charts
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
## [0.54.12](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.11...v0.54.12) (2022-02-04)
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
### Bug Fixes
|
|
91
|
-
|
|
92
|
-
* **treemap:** issues with having a depth of 1 ([#1299](https://github.com/carbon-design-system/carbon-charts/issues/1299)) ([778f726](https://github.com/carbon-design-system/carbon-charts/commit/778f726392907563347af94681f3d8cd70dee994))
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
## [0.54.11](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.10...v0.54.11) (2022-02-02)
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
### Bug Fixes
|
|
102
|
-
|
|
103
|
-
* **core:** render only the components that are being used in proportional meter ([#1273](https://github.com/carbon-design-system/carbon-charts/issues/1273)) ([46715c0](https://github.com/carbon-design-system/carbon-charts/commit/46715c0f285897958fe2008beac391ae8ab8f779)), closes [#1262](https://github.com/carbon-design-system/carbon-charts/issues/1262)
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
## [0.54.10](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.9...v0.54.10) (2022-01-27)
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
### Bug Fixes
|
|
113
|
-
|
|
114
|
-
* **radar:** only show active datapoints in tooltips ([#1289](https://github.com/carbon-design-system/carbon-charts/issues/1289)) ([58738da](https://github.com/carbon-design-system/carbon-charts/commit/58738da230ab8dcf8c115f955dabfaf5504b0252))
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
## [0.54.9](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.8...v0.54.9) (2022-01-27)
|
|
121
|
-
|
|
122
|
-
**Note:** Version bump only for package @carbon/charts
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
## [0.54.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.7...v0.54.8) (2022-01-25)
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
### Bug Fixes
|
|
132
|
-
|
|
133
|
-
* **core:** position bounds correctly in secondary axis of combo chart ([#1281](https://github.com/carbon-design-system/carbon-charts/issues/1281)) ([ab9b8e9](https://github.com/carbon-design-system/carbon-charts/commit/ab9b8e90a0e128f6c9a185091d06e62c35e90042)), closes [#1253](https://github.com/carbon-design-system/carbon-charts/issues/1253)
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
## [0.54.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.6...v0.54.7) (2022-01-13)
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
### Bug Fixes
|
|
143
|
-
|
|
144
|
-
* **core:** prevent chart from breaking if thresholds array is empty ([#1267](https://github.com/carbon-design-system/carbon-charts/issues/1267)) ([f566213](https://github.com/carbon-design-system/carbon-charts/commit/f566213ba4bc5c515f0a8da65a85dd14452186be)), closes [#1264](https://github.com/carbon-design-system/carbon-charts/issues/1264)
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
## [0.54.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.5...v0.54.6) (2022-01-13)
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
### Bug Fixes
|
|
154
|
-
|
|
155
|
-
* **core:** prevent canvas zooming if depth equals 2 and canvas zoom property is set to false ([#1265](https://github.com/carbon-design-system/carbon-charts/issues/1265)) ([1f42fe0](https://github.com/carbon-design-system/carbon-charts/commit/1f42fe09461c5ad9809ecb30d3642728284d021d)), closes [#1251](https://github.com/carbon-design-system/carbon-charts/issues/1251)
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
## [0.54.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.4...v0.54.5) (2022-01-11)
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
### Bug Fixes
|
|
165
|
-
|
|
166
|
-
* **core:** keep radar chart alignment after fullscreene exit ([#1249](https://github.com/carbon-design-system/carbon-charts/issues/1249)) ([02eebb6](https://github.com/carbon-design-system/carbon-charts/commit/02eebb61ddc1ecfedb68a32cd15c82e428870a36)), closes [#1247](https://github.com/carbon-design-system/carbon-charts/issues/1247)
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
## [0.54.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.3...v0.54.4) (2022-01-10)
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
### Bug Fixes
|
|
176
|
-
|
|
177
|
-
* **core:** prevent area chart from bleeding out of cartesian plane when includeZero is enabled ([#1263](https://github.com/carbon-design-system/carbon-charts/issues/1263)) ([62b6014](https://github.com/carbon-design-system/carbon-charts/commit/62b6014eea594d08572f71034eda8919c9e22100)), closes [#1248](https://github.com/carbon-design-system/carbon-charts/issues/1248)
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
## [0.54.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.2...v0.54.3) (2022-01-07)
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
### Bug Fixes
|
|
187
|
-
|
|
188
|
-
* **stacked-bar:** set bar width based on number of domain values ([#1235](https://github.com/carbon-design-system/carbon-charts/issues/1235)) ([758c064](https://github.com/carbon-design-system/carbon-charts/commit/758c064fcbf8f837da400af9bfac9862b2f20d1f)), closes [#1232](https://github.com/carbon-design-system/carbon-charts/issues/1232)
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
## [0.54.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.1...v0.54.2) (2022-01-05)
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
### Bug Fixes
|
|
198
|
-
|
|
199
|
-
* **core:** add background to chart in fullscreen mode ([#1261](https://github.com/carbon-design-system/carbon-charts/issues/1261)) ([7a10ae8](https://github.com/carbon-design-system/carbon-charts/commit/7a10ae867060b8719596fc51ccc455f14b8a8210))
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
## [0.54.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.0...v0.54.1) (2022-01-05)
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
### Bug Fixes
|
|
209
|
-
|
|
210
|
-
* **core:** remove circular dependencies inheritance from heatmap legend & canvas zoom files ([#1260](https://github.com/carbon-design-system/carbon-charts/issues/1260)) ([1abc4d9](https://github.com/carbon-design-system/carbon-charts/commit/1abc4d9ebf8ce80226df23371c4b9baa669f4c7f))
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
# [0.54.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.53.5...v0.54.0) (2021-12-24)
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
### Features
|
|
220
|
-
|
|
221
|
-
* **core:** create heatmap chart ([#1200](https://github.com/carbon-design-system/carbon-charts/issues/1200)) ([a55be0f](https://github.com/carbon-design-system/carbon-charts/commit/a55be0fcec6020b609ab18b2224562aaa9775321))
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
## [0.53.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.53.4...v0.53.5) (2021-12-15)
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
### Bug Fixes
|
|
231
|
-
|
|
232
|
-
* **core:** use domain in zoom bar if defined in axes ([#1243](https://github.com/carbon-design-system/carbon-charts/issues/1243)) ([b265676](https://github.com/carbon-design-system/carbon-charts/commit/b2656764758d5b339987a59a2be344d0e94df4c2)), closes [#1228](https://github.com/carbon-design-system/carbon-charts/issues/1228)
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
## [0.53.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.53.3...v0.53.4) (2021-12-13)
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
### Bug Fixes
|
|
242
|
-
|
|
243
|
-
* **core:** allow users to define custom buttons in toolbar ([#1158](https://github.com/carbon-design-system/carbon-charts/issues/1158)) ([4996591](https://github.com/carbon-design-system/carbon-charts/commit/499659155b56df9f7ab03633e43f5437f21bb129)), closes [#1129](https://github.com/carbon-design-system/carbon-charts/issues/1129)
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
## [0.53.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.53.2...v0.53.3) (2021-12-07)
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
### Bug Fixes
|
|
253
|
-
|
|
254
|
-
* **core:** fix overflow menu caused by data loading option change ([#1239](https://github.com/carbon-design-system/carbon-charts/issues/1239)) ([48b2058](https://github.com/carbon-design-system/carbon-charts/commit/48b2058746d3d86675d1f979e7ea6839712bef65)), closes [#1229](https://github.com/carbon-design-system/carbon-charts/issues/1229)
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
## [0.53.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.53.1...v0.53.2) (2021-12-06)
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
### Bug Fixes
|
|
264
|
-
|
|
265
|
-
* **core:** display respective combochart tooltips range label ([#1236](https://github.com/carbon-design-system/carbon-charts/issues/1236)) ([a460ea3](https://github.com/carbon-design-system/carbon-charts/commit/a460ea3e1a695b6bf2b56f4401621d2853add8b6)), closes [#1085](https://github.com/carbon-design-system/carbon-charts/issues/1085)
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
## [0.53.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.53.0...v0.53.1) (2021-12-02)
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
### Bug Fixes
|
|
275
|
-
|
|
276
|
-
* **core:** display the correct group when hovering over scatter point ([#1233](https://github.com/carbon-design-system/carbon-charts/issues/1233)) ([dcb5357](https://github.com/carbon-design-system/carbon-charts/commit/dcb5357a470789bbdecb97a2f0fccfa999b0c837)), closes [#1188](https://github.com/carbon-design-system/carbon-charts/issues/1188)
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
# [0.53.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.4...v0.53.0) (2021-12-01)
|
|
283
|
-
|
|
284
|
-
**Note:** Version bump only for package @carbon/charts
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
## [0.52.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.3...v0.52.4) (2021-12-01)
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
### Bug Fixes
|
|
294
|
-
|
|
295
|
-
* **core:** set zoom domain if old initial zoom domain is undefined ([#1230](https://github.com/carbon-design-system/carbon-charts/issues/1230)) ([6d2bb01](https://github.com/carbon-design-system/carbon-charts/commit/6d2bb014a571dc8a9e6691b6b75c0736ab90b5c5))
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
## [0.52.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.2...v0.52.3) (2021-11-22)
|
|
302
|
-
|
|
303
|
-
**Note:** Version bump only for package @carbon/charts
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
## [0.52.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.1...v0.52.2) (2021-11-19)
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
### Bug Fixes
|
|
313
|
-
|
|
314
|
-
* **core:** add linear gradient support to alluvial links ([#1192](https://github.com/carbon-design-system/carbon-charts/issues/1192)) ([f2170b1](https://github.com/carbon-design-system/carbon-charts/commit/f2170b15b78797e0fcced2367b5b60c2b4e3a332)), closes [#1189](https://github.com/carbon-design-system/carbon-charts/issues/1189)
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
## [0.52.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.0...v0.52.1) (2021-11-19)
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
### Bug Fixes
|
|
324
|
-
|
|
325
|
-
* **core:** set pointer events of highlight elements to none ([#1220](https://github.com/carbon-design-system/carbon-charts/issues/1220)) ([5594054](https://github.com/carbon-design-system/carbon-charts/commit/5594054f791e4bd48b121104a3280e9934d90d6f)), closes [#1212](https://github.com/carbon-design-system/carbon-charts/issues/1212)
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
# [0.52.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.51.4...v0.52.0) (2021-11-18)
|
|
332
|
-
|
|
333
|
-
**Note:** Version bump only for package @carbon/charts
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
## [0.51.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.51.3...v0.51.4) (2021-11-16)
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
### Bug Fixes
|
|
343
|
-
|
|
344
|
-
* **svelte:** remove default export in `index.html` ([#1218](https://github.com/carbon-design-system/carbon-charts/issues/1218)) ([63f99d1](https://github.com/carbon-design-system/carbon-charts/commit/63f99d1b57d1b034292cc44aad93ca2de69beaed))
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
## [0.51.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.51.2...v0.51.3) (2021-11-03)
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
### Bug Fixes
|
|
354
|
-
|
|
355
|
-
* **core:** remove direct reference to getBBox() ([#1209](https://github.com/carbon-design-system/carbon-charts/issues/1209)) ([4960dd0](https://github.com/carbon-design-system/carbon-charts/commit/4960dd0d0d7f186ba12dd139dab6277599b208c5))
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
## [0.51.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.51.1...v0.51.2) (2021-11-02)
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
### Bug Fixes
|
|
365
|
-
|
|
366
|
-
* **core:** improve keyboard accessibility ([#1208](https://github.com/carbon-design-system/carbon-charts/issues/1208)) ([4f64327](https://github.com/carbon-design-system/carbon-charts/commit/4f64327f29dd23d73e4450a7f1cdda4d1d69d4e6)), closes [#1204](https://github.com/carbon-design-system/carbon-charts/issues/1204)
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
## [0.51.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.51.0...v0.51.1) (2021-11-02)
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
### Bug Fixes
|
|
376
|
-
|
|
377
|
-
* **core:** render chart axis labels correctly when data loads async ([#1207](https://github.com/carbon-design-system/carbon-charts/issues/1207)) ([f22e99b](https://github.com/carbon-design-system/carbon-charts/commit/f22e99b8145b476d7ba55ce8f9b00843cd98aa3c)), closes [#1135](https://github.com/carbon-design-system/carbon-charts/issues/1135)
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
# [0.51.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.50.10...v0.51.0) (2021-11-01)
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
### Features
|
|
387
|
-
|
|
388
|
-
* **core:** add toolbar to non-cartesian charts ([#1191](https://github.com/carbon-design-system/carbon-charts/issues/1191)) ([3574f4f](https://github.com/carbon-design-system/carbon-charts/commit/3574f4f376cc064e0f58de14c61d6442c527aa17))
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
## [0.50.10](https://github.com/carbon-design-system/carbon-charts/compare/v0.50.9...v0.50.10) (2021-10-27)
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
### Bug Fixes
|
|
398
|
-
|
|
399
|
-
* **core:** address various accessibility violations ([#1199](https://github.com/carbon-design-system/carbon-charts/issues/1199)) ([a4ab2c0](https://github.com/carbon-design-system/carbon-charts/commit/a4ab2c0e3a91513a18e5724faa87dfd80c81c248))
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
## [0.50.9](https://github.com/carbon-design-system/carbon-charts/compare/v0.50.8...v0.50.9) (2021-10-20)
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
### Bug Fixes
|
|
409
|
-
|
|
410
|
-
* **core:** hCM issues with legend & tooltips ([#1195](https://github.com/carbon-design-system/carbon-charts/issues/1195)) ([d5d7bf1](https://github.com/carbon-design-system/carbon-charts/commit/d5d7bf1b1438a275ea7083bc278d36c884a49bce))
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
## [0.50.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.50.7...v0.50.8) (2021-10-18)
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
### Bug Fixes
|
|
420
|
-
|
|
421
|
-
* **core:** fix group names in binned ruler tooltips ([#1190](https://github.com/carbon-design-system/carbon-charts/issues/1190)) ([312f8be](https://github.com/carbon-design-system/carbon-charts/commit/312f8bea2d885539370ca81ddbc89ee63689ab2b))
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
## [0.50.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.50.6...v0.50.7) (2021-10-12)
|
|
428
|
-
|
|
429
|
-
**Note:** Version bump only for package @carbon/charts
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
## [0.50.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.50.5...v0.50.6) (2021-10-08)
|
|
436
|
-
|
|
437
|
-
**Note:** Version bump only for package @carbon/charts
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
## [0.50.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.50.4...v0.50.5) (2021-10-08)
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
### Bug Fixes
|
|
447
|
-
|
|
448
|
-
* **core:** fix safari bug causing incorrect chart heights ([#1179](https://github.com/carbon-design-system/carbon-charts/issues/1179)) ([55dd880](https://github.com/carbon-design-system/carbon-charts/commit/55dd880e48cb07c8f392ce2b9774e49ea4220051)), closes [#1177](https://github.com/carbon-design-system/carbon-charts/issues/1177)
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
## [0.50.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.50.3...v0.50.4) (2021-10-05)
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
### Bug Fixes
|
|
458
|
-
|
|
459
|
-
* **core:** allow users to assign custom colors to the links of source nodes ([#1178](https://github.com/carbon-design-system/carbon-charts/issues/1178)) ([bec1cc7](https://github.com/carbon-design-system/carbon-charts/commit/bec1cc736dec36fd8ed26a1ade1ac9f375e3849c)), closes [#1175](https://github.com/carbon-design-system/carbon-charts/issues/1175)
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
## [0.50.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.50.2...v0.50.3) (2021-10-04)
|
|
466
|
-
|
|
467
|
-
**Note:** Version bump only for package @carbon/charts
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
## [0.50.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.50.1...v0.50.2) (2021-10-04)
|
|
474
|
-
|
|
475
|
-
**Note:** Version bump only for package @carbon/charts
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
## [0.50.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.50.0...v0.50.1) (2021-10-01)
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
### Bug Fixes
|
|
485
|
-
|
|
486
|
-
* **styles:** use `map-get` in `_type.scss` ([#1171](https://github.com/carbon-design-system/carbon-charts/issues/1171)) ([5d3da4c](https://github.com/carbon-design-system/carbon-charts/commit/5d3da4c08321d9ac0dcf9687cee1b6ab77d06163))
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
# [0.50.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.49.7...v0.50.0) (2021-09-30)
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
### Features
|
|
496
|
-
|
|
497
|
-
* **core:** remove overflow menu and modal imports in chart styles ([#1170](https://github.com/carbon-design-system/carbon-charts/issues/1170)) ([4ca6839](https://github.com/carbon-design-system/carbon-charts/commit/4ca683928b8cea7c47b6e3f287b0fff9736eee5f)), closes [#1115](https://github.com/carbon-design-system/carbon-charts/issues/1115)
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
## [0.49.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.49.6...v0.49.7) (2021-09-27)
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
### Bug Fixes
|
|
507
|
-
|
|
508
|
-
* **core:** optimize transition to not return new transition on root element ([#1169](https://github.com/carbon-design-system/carbon-charts/issues/1169)) ([fe4d592](https://github.com/carbon-design-system/carbon-charts/commit/fe4d592991e9cbf68c4b9efab0be4aa46dfcd416)), closes [#1143](https://github.com/carbon-design-system/carbon-charts/issues/1143)
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
## [0.49.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.49.5...v0.49.6) (2021-09-23)
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
### Bug Fixes
|
|
518
|
-
|
|
519
|
-
* **core:** correctly draw the threshold from multiple axes ([#1159](https://github.com/carbon-design-system/carbon-charts/issues/1159)) ([1bba0d3](https://github.com/carbon-design-system/carbon-charts/commit/1bba0d38cc0b08fc56861d5923d1f7f3293e80a8)), closes [#1153](https://github.com/carbon-design-system/carbon-charts/issues/1153)
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
## [0.49.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.49.4...v0.49.5) (2021-09-23)
|
|
526
|
-
|
|
527
|
-
**Note:** Version bump only for package @carbon/charts
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
## [0.49.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.49.3...v0.49.4) (2021-09-22)
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
### Bug Fixes
|
|
537
|
-
|
|
538
|
-
* **core:** stacked layouts in combo charts ([#1165](https://github.com/carbon-design-system/carbon-charts/issues/1165)) ([3f53e49](https://github.com/carbon-design-system/carbon-charts/commit/3f53e491446020d4e57e6b002a4ab69062aec068))
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
## [0.49.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.49.2...v0.49.3) (2021-09-22)
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
### Bug Fixes
|
|
548
|
-
|
|
549
|
-
* **core:** replace empty hyperlink with an appropriate tag ([#1163](https://github.com/carbon-design-system/carbon-charts/issues/1163)) ([5d0f75d](https://github.com/carbon-design-system/carbon-charts/commit/5d0f75d97656e85c858364a3cadc92ebe3dd6cc0)), closes [#952](https://github.com/carbon-design-system/carbon-charts/issues/952)
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
## [0.49.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.49.1...v0.49.2) (2021-09-20)
|
|
556
|
-
|
|
557
|
-
**Note:** Version bump only for package @carbon/charts
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
## [0.49.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.49.0...v0.49.1) (2021-09-17)
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
### Bug Fixes
|
|
567
|
-
|
|
568
|
-
* **core:** groupMapsTo in stacked bar charts ([#1156](https://github.com/carbon-design-system/carbon-charts/issues/1156)) ([4d6b61b](https://github.com/carbon-design-system/carbon-charts/commit/4d6b61ba86c154787f9e8acdf3ed8851dc8c6b17))
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
# [0.49.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.48.4...v0.49.0) (2021-09-15)
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
### Features
|
|
578
|
-
|
|
579
|
-
* **core:** create alluvial chart ([#1132](https://github.com/carbon-design-system/carbon-charts/issues/1132)) ([08fa194](https://github.com/carbon-design-system/carbon-charts/commit/08fa194f1c59ab2110c0d221886fc0174c936194)), closes [#871](https://github.com/carbon-design-system/carbon-charts/issues/871)
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
## [0.48.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.48.3...v0.48.4) (2021-09-13)
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
### Bug Fixes
|
|
589
|
-
|
|
590
|
-
* **core:** legend alignment incorrect initial rendering ([#1151](https://github.com/carbon-design-system/carbon-charts/issues/1151)) ([0b01426](https://github.com/carbon-design-system/carbon-charts/commit/0b0142677fd67041ee8576aa19cfa53f24e39a55))
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
## [0.48.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.48.2...v0.48.3) (2021-09-13)
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
### Bug Fixes
|
|
600
|
-
|
|
601
|
-
* **core:** diagram rendering issues in safari ([#1150](https://github.com/carbon-design-system/carbon-charts/issues/1150)) ([fc123dd](https://github.com/carbon-design-system/carbon-charts/commit/fc123dda01795fbd4703362dd2688c5ac1940728))
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
## [0.48.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.48.1...v0.48.2) (2021-09-13)
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
### Bug Fixes
|
|
611
|
-
|
|
612
|
-
* **core:** render an empty zoom bar holder when there is less than or equal to 1 data element ([#1134](https://github.com/carbon-design-system/carbon-charts/issues/1134)) ([9864cfd](https://github.com/carbon-design-system/carbon-charts/commit/9864cfd103a45ed8c8ca1605cb98a4cd10434fb2)), closes [#996](https://github.com/carbon-design-system/carbon-charts/issues/996)
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
## [0.48.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.48.0...v0.48.1) (2021-09-13)
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
### Bug Fixes
|
|
622
|
-
|
|
623
|
-
* **core:** display donut-figure in the center when donut-title is empty ([#1147](https://github.com/carbon-design-system/carbon-charts/issues/1147)) ([1d3dac5](https://github.com/carbon-design-system/carbon-charts/commit/1d3dac55d868306541ad6acd8205cce5a505dfe0)), closes [#1146](https://github.com/carbon-design-system/carbon-charts/issues/1146)
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
# [0.48.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.47.0...v0.48.0) (2021-09-10)
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
### Features
|
|
633
|
-
|
|
634
|
-
* **highlight:** Add highlights ([#1048](https://github.com/carbon-design-system/carbon-charts/issues/1048)) ([baa4645](https://github.com/carbon-design-system/carbon-charts/commit/baa4645c16027ab21f2d2155c79fb73cdf0d4772))
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
# [0.47.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.46.5...v0.47.0) (2021-09-08)
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
### Features
|
|
644
|
-
|
|
645
|
-
* **core:** add tree chart ([#1116](https://github.com/carbon-design-system/carbon-charts/issues/1116)) ([96e4988](https://github.com/carbon-design-system/carbon-charts/commit/96e4988d5b3926f2a9daa642c8ebb62058328aa3))
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
## [0.46.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.46.4...v0.46.5) (2021-09-08)
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
### Bug Fixes
|
|
655
|
-
|
|
656
|
-
* **core:** filter out dots with missing value ([#1136](https://github.com/carbon-design-system/carbon-charts/issues/1136)) ([c87bee8](https://github.com/carbon-design-system/carbon-charts/commit/c87bee87de7337a0b4a332d9a223ed3e3be92ab9)), closes [#1133](https://github.com/carbon-design-system/carbon-charts/issues/1133)
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
## [0.46.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.46.3...v0.46.4) (2021-08-31)
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
### Bug Fixes
|
|
666
|
-
|
|
667
|
-
* **core:** display correct toolbar controls based on provided options ([#1127](https://github.com/carbon-design-system/carbon-charts/issues/1127)) ([77e0e43](https://github.com/carbon-design-system/carbon-charts/commit/77e0e431c3c5c57eec3e49757747c1a7835f93de)), closes [#1109](https://github.com/carbon-design-system/carbon-charts/issues/1109)
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
## [0.46.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.46.2...v0.46.3) (2021-08-31)
|
|
674
|
-
|
|
675
|
-
**Note:** Version bump only for package @carbon/charts
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
## [0.46.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.46.1...v0.46.2) (2021-08-30)
|
|
682
|
-
|
|
683
|
-
**Note:** Version bump only for package @carbon/charts
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
## [0.46.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.46.0...v0.46.1) (2021-08-27)
|
|
690
|
-
|
|
691
|
-
**Note:** Version bump only for package @carbon/charts
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
# [0.46.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.45.1...v0.46.0) (2021-08-27)
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
### Features
|
|
701
|
-
|
|
702
|
-
* **charts:** add proportional meter chart ([#1040](https://github.com/carbon-design-system/carbon-charts/issues/1040)) ([10592e4](https://github.com/carbon-design-system/carbon-charts/commit/10592e40665d104117b8e2d2580e5edc407c3e8d))
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
# Change Log
|
|
709
|
-
|
|
710
|
-
All notable changes to this project will be documented in this file. See
|
|
711
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
712
|
-
|
|
713
|
-
## [0.45.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.45.0...v0.45.1) (2021-08-23)
|
|
714
|
-
|
|
715
|
-
**Note:** Version bump only for package @carbon/charts
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
# [0.45.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.44.1...v0.45.0) (2021-08-19)
|
|
722
|
-
|
|
723
|
-
### Features
|
|
724
|
-
|
|
725
|
-
- **core:** Add options to map value to other keys
|
|
726
|
-
([#1122](https://github.com/carbon-design-system/carbon-charts/issues/1122))
|
|
727
|
-
([1835192](https://github.com/carbon-design-system/carbon-charts/commit/18351924acc182c24a7467dfc989fdc1e5c759dc)),
|
|
728
|
-
closes
|
|
729
|
-
[#1110](https://github.com/carbon-design-system/carbon-charts/issues/1110)
|
|
730
|
-
[#1110](https://github.com/carbon-design-system/carbon-charts/issues/1110)
|
|
731
|
-
[#1110](https://github.com/carbon-design-system/carbon-charts/issues/1110)
|
|
732
|
-
[#1110](https://github.com/carbon-design-system/carbon-charts/issues/1110)
|
|
733
|
-
[#1110](https://github.com/carbon-design-system/carbon-charts/issues/1110)
|
|
734
|
-
|
|
735
|
-
## [0.44.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.44.0...v0.44.1) (2021-08-19)
|
|
736
|
-
|
|
737
|
-
**Note:** Version bump only for package @carbon/charts
|
|
738
|
-
|
|
739
|
-
# [0.44.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.43.0...v0.44.0) (2021-08-18)
|
|
740
|
-
|
|
741
|
-
### Features
|
|
742
|
-
|
|
743
|
-
- **core:** support negative values in stacked bar
|
|
744
|
-
([#1121](https://github.com/carbon-design-system/carbon-charts/issues/1121))
|
|
745
|
-
([b71cc79](https://github.com/carbon-design-system/carbon-charts/commit/b71cc79876fe56b49cbb08441f41e17ee37fbcff))
|
|
746
|
-
|
|
747
|
-
# [0.43.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.42.1...v0.43.0) (2021-08-17)
|
|
748
|
-
|
|
749
|
-
### Features
|
|
750
|
-
|
|
751
|
-
- **core:** remove backgrounds on chart holder & wrapper
|
|
752
|
-
([#1120](https://github.com/carbon-design-system/carbon-charts/issues/1120))
|
|
753
|
-
([8044c99](https://github.com/carbon-design-system/carbon-charts/commit/8044c99cd4c307147a164d3e60bbb23d2a0a2dc4))
|
|
754
|
-
|
|
755
|
-
## [0.42.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.42.0...v0.42.1) (2021-08-13)
|
|
756
|
-
|
|
757
|
-
**Note:** Version bump only for package @carbon/charts
|
|
758
|
-
|
|
759
|
-
# [0.42.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.103...v0.42.0) (2021-08-13)
|
|
760
|
-
|
|
761
|
-
### Features
|
|
762
|
-
|
|
763
|
-
- **charts:** add histogram
|
|
764
|
-
([#1038](https://github.com/carbon-design-system/carbon-charts/issues/1038))
|
|
765
|
-
([07e07b3](https://github.com/carbon-design-system/carbon-charts/commit/07e07b3a2e8bc0eb01a7f4fdfc004e8095fb7b26))
|
|
766
|
-
|
|
767
|
-
# Change Log
|
|
768
|
-
|
|
769
|
-
All notable changes to this project will be documented in this file. See
|
|
770
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
771
|
-
|
|
772
|
-
## [0.41.103](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.102...v0.41.103) (2021-08-11)
|
|
773
|
-
|
|
774
|
-
**Note:** Version bump only for package @carbon/charts
|
|
775
|
-
|
|
776
|
-
## [0.41.102](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.101...v0.41.102) (2021-08-10)
|
|
777
|
-
|
|
778
|
-
**Note:** Version bump only for package @carbon/charts
|
|
779
|
-
|
|
780
|
-
## [0.41.101](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.100...v0.41.101) (2021-08-06)
|
|
781
|
-
|
|
782
|
-
**Note:** Version bump only for package @carbon/charts
|
|
783
|
-
|
|
784
|
-
## [0.41.100](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.99...v0.41.100) (2021-08-04)
|
|
785
|
-
|
|
786
|
-
**Note:** Version bump only for package @carbon/charts
|
|
787
|
-
|
|
788
|
-
## [0.41.99](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.98...v0.41.99) (2021-08-04)
|
|
789
|
-
|
|
790
|
-
**Note:** Version bump only for package @carbon/charts
|
|
791
|
-
|
|
792
|
-
## [0.41.98](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.97...v0.41.98) (2021-08-04)
|
|
793
|
-
|
|
794
|
-
**Note:** Version bump only for package @carbon/charts
|
|
795
|
-
|
|
796
|
-
## [0.41.97](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.96...v0.41.97) (2021-08-04)
|
|
797
|
-
|
|
798
|
-
**Note:** Version bump only for package @carbon/charts
|
|
799
|
-
|
|
800
|
-
## [0.41.96](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.95...v0.41.96) (2021-08-04)
|
|
801
|
-
|
|
802
|
-
### Bug Fixes
|
|
803
|
-
|
|
804
|
-
- **core:** optimize fullscreen logic
|
|
805
|
-
([#1097](https://github.com/carbon-design-system/carbon-charts/issues/1097))
|
|
806
|
-
([d4ee1c9](https://github.com/carbon-design-system/carbon-charts/commit/d4ee1c9da6f37516b2796b69af1b7a429deb41b7))
|
|
807
|
-
|
|
808
|
-
## [0.41.95](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.94...v0.41.95) (2021-08-02)
|
|
809
|
-
|
|
810
|
-
### Bug Fixes
|
|
811
|
-
|
|
812
|
-
- **core:** set $css--default-type to false in the styles
|
|
813
|
-
([#1096](https://github.com/carbon-design-system/carbon-charts/issues/1096))
|
|
814
|
-
([d35ee26](https://github.com/carbon-design-system/carbon-charts/commit/d35ee269735c150efa1d375c5ff65c4375f7bc3e))
|
|
815
|
-
|
|
816
|
-
## [0.41.94](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.93...v0.41.94) (2021-07-30)
|
|
817
|
-
|
|
818
|
-
### Bug Fixes
|
|
819
|
-
|
|
820
|
-
- **core:** avoid adding carbon css-reset to styles
|
|
821
|
-
([#1095](https://github.com/carbon-design-system/carbon-charts/issues/1095))
|
|
822
|
-
([8c48aef](https://github.com/carbon-design-system/carbon-charts/commit/8c48aefc6f78a9dce831897e7fb75cf79dfb3b19))
|
|
823
|
-
|
|
824
|
-
## [0.41.93](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.92...v0.41.93) (2021-07-27)
|
|
825
|
-
|
|
826
|
-
### Performance Improvements
|
|
827
|
-
|
|
828
|
-
- **download-csv:** revoke object URL after downloading
|
|
829
|
-
([#1089](https://github.com/carbon-design-system/carbon-charts/issues/1089))
|
|
830
|
-
([6f001c7](https://github.com/carbon-design-system/carbon-charts/commit/6f001c749feb3747686aa5f5cd612a7cbbe7cefc))
|
|
831
|
-
|
|
832
|
-
## [0.41.92](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.91...v0.41.92) (2021-07-26)
|
|
833
|
-
|
|
834
|
-
**Note:** Version bump only for package @carbon/charts
|
|
835
|
-
|
|
836
|
-
## [0.41.91](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.90...v0.41.91) (2021-07-22)
|
|
837
|
-
|
|
838
|
-
### Bug Fixes
|
|
839
|
-
|
|
840
|
-
- **core:** eliminate style conflicts with carbon-components
|
|
841
|
-
([#1086](https://github.com/carbon-design-system/carbon-charts/issues/1086))
|
|
842
|
-
([4b11432](https://github.com/carbon-design-system/carbon-charts/commit/4b1143264f683f774d80dc98d4db2b72a7eac449))
|
|
843
|
-
|
|
844
|
-
## [0.41.90](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.89...v0.41.90) (2021-07-21)
|
|
845
|
-
|
|
846
|
-
### Bug Fixes
|
|
847
|
-
|
|
848
|
-
- **core:** gauge delta arrow not showing on first render
|
|
849
|
-
([#1083](https://github.com/carbon-design-system/carbon-charts/issues/1083))
|
|
850
|
-
([2169d80](https://github.com/carbon-design-system/carbon-charts/commit/2169d80f74557e8172d2846c9897ddf70982a1b1))
|
|
851
|
-
|
|
852
|
-
## [0.41.89](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.88...v0.41.89) (2021-07-21)
|
|
853
|
-
|
|
854
|
-
**Note:** Version bump only for package @carbon/charts
|
|
855
|
-
|
|
856
|
-
## [0.41.88](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.87...v0.41.88) (2021-07-21)
|
|
857
|
-
|
|
858
|
-
### Bug Fixes
|
|
859
|
-
|
|
860
|
-
- **core:** remove references to `process` in UMD bundles
|
|
861
|
-
([#1078](https://github.com/carbon-design-system/carbon-charts/issues/1078))
|
|
862
|
-
([dac2067](https://github.com/carbon-design-system/carbon-charts/commit/dac20679a895c56f03c2a156900d133233e17ded))
|
|
863
|
-
|
|
864
|
-
## [0.41.87](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.86...v0.41.87) (2021-07-20)
|
|
865
|
-
|
|
866
|
-
**Note:** Version bump only for package @carbon/charts
|
|
867
|
-
|
|
868
|
-
## [0.41.86](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.85...v0.41.86) (2021-07-20)
|
|
869
|
-
|
|
870
|
-
**Note:** Version bump only for package @carbon/charts
|
|
871
|
-
|
|
872
|
-
## [0.41.85](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.84...v0.41.85) (2021-07-20)
|
|
873
|
-
|
|
874
|
-
### Bug Fixes
|
|
875
|
-
|
|
876
|
-
- **core:** make sure document exists in case using SSR
|
|
877
|
-
([#1073](https://github.com/carbon-design-system/carbon-charts/issues/1073))
|
|
878
|
-
([20a78b8](https://github.com/carbon-design-system/carbon-charts/commit/20a78b8bae199b31d5cf459a84002831e79573fd))
|
|
879
|
-
|
|
880
|
-
## [0.41.84](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.83...v0.41.84) (2021-07-16)
|
|
881
|
-
|
|
882
|
-
**Note:** Version bump only for package @carbon/charts
|
|
883
|
-
|
|
884
|
-
## [0.41.83](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.82...v0.41.83) (2021-07-15)
|
|
885
|
-
|
|
886
|
-
**Note:** Version bump only for package @carbon/charts
|
|
887
|
-
|
|
888
|
-
# Change Log
|
|
889
|
-
|
|
890
|
-
All notable changes to this project will be documented in this file. See
|
|
891
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
892
|
-
|
|
893
|
-
## [0.41.82](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.81...v0.41.82) (2021-07-13)
|
|
894
|
-
|
|
895
|
-
**Note:** Version bump only for package @carbon/charts
|
|
896
|
-
|
|
897
|
-
## [0.41.81](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.80...v0.41.81) (2021-07-13)
|
|
898
|
-
|
|
899
|
-
### Bug Fixes
|
|
900
|
-
|
|
901
|
-
- **core:** display the first and last data elements when addSpaceOnEdges is
|
|
902
|
-
set to 0
|
|
903
|
-
([#1064](https://github.com/carbon-design-system/carbon-charts/issues/1064))
|
|
904
|
-
([f321807](https://github.com/carbon-design-system/carbon-charts/commit/f32180774720c7d916f6bd441b7d72500b77e7f9)),
|
|
905
|
-
closes
|
|
906
|
-
[#763](https://github.com/carbon-design-system/carbon-charts/issues/763)
|
|
907
|
-
|
|
908
|
-
## [0.41.80](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.79...v0.41.80) (2021-07-07)
|
|
909
|
-
|
|
910
|
-
**Note:** Version bump only for package @carbon/charts
|
|
911
|
-
|
|
912
|
-
## [0.41.79](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.78...v0.41.79) (2021-06-29)
|
|
913
|
-
|
|
914
|
-
**Note:** Version bump only for package @carbon/charts
|
|
915
|
-
|
|
916
|
-
## [0.41.78](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.77...v0.41.78) (2021-06-29)
|
|
917
|
-
|
|
918
|
-
### Bug Fixes
|
|
919
|
-
|
|
920
|
-
- **core:** keep fill colors if custom getIsFilled is passed on mouse over for
|
|
921
|
-
line graph
|
|
922
|
-
([#1055](https://github.com/carbon-design-system/carbon-charts/issues/1055))
|
|
923
|
-
([b5dac70](https://github.com/carbon-design-system/carbon-charts/commit/b5dac70c919475672ee31c59cf542605db68e5b4))
|
|
924
|
-
|
|
925
|
-
## [0.41.77](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.76...v0.41.77) (2021-06-25)
|
|
926
|
-
|
|
927
|
-
**Note:** Version bump only for package @carbon/charts
|
|
928
|
-
|
|
929
|
-
## [0.41.76](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.75...v0.41.76) (2021-06-24)
|
|
930
|
-
|
|
931
|
-
**Note:** Version bump only for package @carbon/charts
|
|
932
|
-
|
|
933
|
-
# Change Log
|
|
934
|
-
|
|
935
|
-
All notable changes to this project will be documented in this file. See
|
|
936
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
937
|
-
|
|
938
|
-
## [0.41.75](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.74...v0.41.75) (2021-06-24)
|
|
939
|
-
|
|
940
|
-
**Note:** Version bump only for package @carbon/charts
|
|
941
|
-
|
|
942
|
-
## [0.41.74](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.73...v0.41.74) (2021-06-24)
|
|
943
|
-
|
|
944
|
-
**Note:** Version bump only for package @carbon/charts
|
|
945
|
-
|
|
946
|
-
## [0.41.73](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.72...v0.41.73) (2021-06-24)
|
|
947
|
-
|
|
948
|
-
**Note:** Version bump only for package @carbon/charts
|
|
949
|
-
|
|
950
|
-
## [0.41.72](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.71...v0.41.72) (2021-06-23)
|
|
951
|
-
|
|
952
|
-
**Note:** Version bump only for package @carbon/charts
|
|
953
|
-
|
|
954
|
-
## [0.41.71](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.70...v0.41.71) (2021-06-21)
|
|
955
|
-
|
|
956
|
-
**Note:** Version bump only for package @carbon/charts
|
|
957
|
-
|
|
958
|
-
## [0.41.70](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.69...v0.41.70) (2021-06-21)
|
|
959
|
-
|
|
960
|
-
**Note:** Version bump only for package @carbon/charts
|
|
961
|
-
|
|
962
|
-
# Change Log
|
|
963
|
-
|
|
964
|
-
All notable changes to this project will be documented in this file. See
|
|
965
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
966
|
-
|
|
967
|
-
## [0.41.69](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.68...v0.41.69) (2021-06-21)
|
|
968
|
-
|
|
969
|
-
**Note:** Version bump only for package @carbon/charts
|
|
970
|
-
|
|
971
|
-
## [0.41.67](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.66...v0.41.67) (2021-05-31)
|
|
972
|
-
|
|
973
|
-
### Bug Fixes
|
|
974
|
-
|
|
975
|
-
- **core:** fix circlepacks with one dataset
|
|
976
|
-
([#1035](https://github.com/carbon-design-system/carbon-charts/issues/1035))
|
|
977
|
-
([2f0b183](https://github.com/carbon-design-system/carbon-charts/commit/2f0b183878b650c76b05ca6d5fb1e8f6a17c0266)),
|
|
978
|
-
closes
|
|
979
|
-
[#1031](https://github.com/carbon-design-system/carbon-charts/issues/1031)
|
|
980
|
-
- **core:** make sure tooltips are properly positioned when closer to the
|
|
981
|
-
edges
|
|
982
|
-
([#1037](https://github.com/carbon-design-system/carbon-charts/issues/1037))
|
|
983
|
-
([a8d13cd](https://github.com/carbon-design-system/carbon-charts/commit/a8d13cd6d90813161582a00afa5166ca87702f38))
|
|
984
|
-
|
|
985
|
-
## [0.41.66](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.65...v0.41.66) (2021-05-25)
|
|
986
|
-
|
|
987
|
-
**Note:** Version bump only for package @carbon/charts
|
|
988
|
-
|
|
989
|
-
## [0.41.65](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.64...v0.41.65) (2021-05-19)
|
|
990
|
-
|
|
991
|
-
**Note:** Version bump only for package @carbon/charts
|
|
992
|
-
|
|
993
|
-
# Change Log
|
|
994
|
-
|
|
995
|
-
All notable changes to this project will be documented in this file. See
|
|
996
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
997
|
-
|
|
998
|
-
## [0.41.64](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.63...v0.41.64) (2021-05-10)
|
|
999
|
-
|
|
1000
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1001
|
-
|
|
1002
|
-
## [0.41.63](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.62...v0.41.63) (2021-05-10)
|
|
1003
|
-
|
|
1004
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1005
|
-
|
|
1006
|
-
# Change Log
|
|
1007
|
-
|
|
1008
|
-
All notable changes to this project will be documented in this file. See
|
|
1009
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1010
|
-
|
|
1011
|
-
## [0.41.62](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.61...v0.41.62) (2021-04-29)
|
|
1012
|
-
|
|
1013
|
-
### Bug Fixes
|
|
1014
|
-
|
|
1015
|
-
- **core:** fix minor bug with data values that are undefined
|
|
1016
|
-
([#1007](https://github.com/carbon-design-system/carbon-charts/issues/1007))
|
|
1017
|
-
([5c4db99](https://github.com/carbon-design-system/carbon-charts/commit/5c4db996e3aaf5b8c8146b686945c9eb4a191b46))
|
|
1018
|
-
|
|
1019
|
-
# Change Log
|
|
1020
|
-
|
|
1021
|
-
All notable changes to this project will be documented in this file. See
|
|
1022
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1023
|
-
|
|
1024
|
-
## [0.41.61](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.60...v0.41.61) (2021-04-28)
|
|
1025
|
-
|
|
1026
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1027
|
-
|
|
1028
|
-
# Change Log
|
|
1029
|
-
|
|
1030
|
-
All notable changes to this project will be documented in this file. See
|
|
1031
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1032
|
-
|
|
1033
|
-
## [0.41.60](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.59...v0.41.60) (2021-04-28)
|
|
1034
|
-
|
|
1035
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1036
|
-
|
|
1037
|
-
## [0.41.59](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.58...v0.41.59) (2021-04-27)
|
|
1038
|
-
|
|
1039
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1040
|
-
|
|
1041
|
-
## [0.41.58](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.57...v0.41.58) (2021-04-26)
|
|
1042
|
-
|
|
1043
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1044
|
-
|
|
1045
|
-
## [0.41.57](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.56...v0.41.57) (2021-04-20)
|
|
1046
|
-
|
|
1047
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1048
|
-
|
|
1049
|
-
# Change Log
|
|
1050
|
-
|
|
1051
|
-
All notable changes to this project will be documented in this file. See
|
|
1052
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1053
|
-
|
|
1054
|
-
## [0.41.56](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.55...v0.41.56) (2021-04-16)
|
|
1055
|
-
|
|
1056
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1057
|
-
|
|
1058
|
-
## [0.41.55](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.54...v0.41.55) (2021-04-14)
|
|
1059
|
-
|
|
1060
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1061
|
-
|
|
1062
|
-
## [0.41.54](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.53...v0.41.54) (2021-04-14)
|
|
1063
|
-
|
|
1064
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1065
|
-
|
|
1066
|
-
# Change Log
|
|
1067
|
-
|
|
1068
|
-
All notable changes to this project will be documented in this file. See
|
|
1069
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1070
|
-
|
|
1071
|
-
## [0.41.53](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.52...v0.41.53) (2021-04-13)
|
|
1072
|
-
|
|
1073
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1074
|
-
|
|
1075
|
-
## [0.41.52](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.51...v0.41.52) (2021-04-12)
|
|
1076
|
-
|
|
1077
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1078
|
-
|
|
1079
|
-
## [0.41.51](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.50...v0.41.51) (2021-04-12)
|
|
1080
|
-
|
|
1081
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1082
|
-
|
|
1083
|
-
# Change Log
|
|
1084
|
-
|
|
1085
|
-
All notable changes to this project will be documented in this file. See
|
|
1086
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1087
|
-
|
|
1088
|
-
## [0.41.50](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.49...v0.41.50) (2021-04-07)
|
|
1089
|
-
|
|
1090
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1091
|
-
|
|
1092
|
-
## [0.41.49](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.48...v0.41.49) (2021-04-07)
|
|
1093
|
-
|
|
1094
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1095
|
-
|
|
1096
|
-
## [0.41.48](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.47...v0.41.48) (2021-03-31)
|
|
1097
|
-
|
|
1098
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1099
|
-
|
|
1100
|
-
## [0.41.47](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.46...v0.41.47) (2021-03-30)
|
|
1101
|
-
|
|
1102
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1103
|
-
|
|
1104
|
-
## [0.41.46](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.45...v0.41.46) (2021-03-29)
|
|
1105
|
-
|
|
1106
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1107
|
-
|
|
1108
|
-
# Change Log
|
|
1109
|
-
|
|
1110
|
-
All notable changes to this project will be documented in this file. See
|
|
1111
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1112
|
-
|
|
1113
|
-
## [0.41.45](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.44...v0.41.45) (2021-03-29)
|
|
1114
|
-
|
|
1115
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1116
|
-
|
|
1117
|
-
## [0.41.44](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.43...v0.41.44) (2021-03-24)
|
|
1118
|
-
|
|
1119
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1120
|
-
|
|
1121
|
-
## [0.41.43](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.42...v0.41.43) (2021-03-15)
|
|
1122
|
-
|
|
1123
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1124
|
-
|
|
1125
|
-
## [0.41.42](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.41...v0.41.42) (2021-03-12)
|
|
1126
|
-
|
|
1127
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1128
|
-
|
|
1129
|
-
## [0.41.41](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.40...v0.41.41) (2021-03-02)
|
|
1130
|
-
|
|
1131
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1132
|
-
|
|
1133
|
-
## [0.41.40](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.39...v0.41.40) (2021-03-01)
|
|
1134
|
-
|
|
1135
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1136
|
-
|
|
1137
|
-
## [0.41.39](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.38...v0.41.39) (2021-02-25)
|
|
1138
|
-
|
|
1139
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1140
|
-
|
|
1141
|
-
## [0.41.38](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.37...v0.41.38) (2021-02-23)
|
|
1142
|
-
|
|
1143
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1144
|
-
|
|
1145
|
-
## [0.41.37](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.36...v0.41.37) (2021-02-23)
|
|
1146
|
-
|
|
1147
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1148
|
-
|
|
1149
|
-
# Change Log
|
|
1150
|
-
|
|
1151
|
-
All notable changes to this project will be documented in this file. See
|
|
1152
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1153
|
-
|
|
1154
|
-
## [0.41.36](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.35...v0.41.36) (2021-02-22)
|
|
1155
|
-
|
|
1156
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1157
|
-
|
|
1158
|
-
# Change Log
|
|
1159
|
-
|
|
1160
|
-
All notable changes to this project will be documented in this file. See
|
|
1161
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1162
|
-
|
|
1163
|
-
## [0.41.35](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.34...v0.41.35) (2021-02-22)
|
|
1164
|
-
|
|
1165
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1166
|
-
|
|
1167
|
-
# Change Log
|
|
1168
|
-
|
|
1169
|
-
All notable changes to this project will be documented in this file. See
|
|
1170
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1171
|
-
|
|
1172
|
-
## [0.41.34](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.33...v0.41.34) (2021-02-22)
|
|
1173
|
-
|
|
1174
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1175
|
-
|
|
1176
|
-
# Change Log
|
|
1177
|
-
|
|
1178
|
-
All notable changes to this project will be documented in this file. See
|
|
1179
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1180
|
-
|
|
1181
|
-
## [0.41.33](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.32...v0.41.33) (2021-02-18)
|
|
1182
|
-
|
|
1183
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1184
|
-
|
|
1185
|
-
# Change Log
|
|
1186
|
-
|
|
1187
|
-
All notable changes to this project will be documented in this file. See
|
|
1188
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1189
|
-
|
|
1190
|
-
## [0.41.32](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.31...v0.41.32) (2021-02-12)
|
|
1191
|
-
|
|
1192
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1193
|
-
|
|
1194
|
-
# Change Log
|
|
1195
|
-
|
|
1196
|
-
All notable changes to this project will be documented in this file. See
|
|
1197
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1198
|
-
|
|
1199
|
-
## [0.41.31](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.30...v0.41.31) (2021-02-05)
|
|
1200
|
-
|
|
1201
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1202
|
-
|
|
1203
|
-
## [0.41.30](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.29...v0.41.30) (2021-02-01)
|
|
1204
|
-
|
|
1205
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1206
|
-
|
|
1207
|
-
# Change Log
|
|
1208
|
-
|
|
1209
|
-
All notable changes to this project will be documented in this file. See
|
|
1210
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1211
|
-
|
|
1212
|
-
## [0.41.29](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.28...v0.41.29) (2021-01-29)
|
|
1213
|
-
|
|
1214
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1215
|
-
|
|
1216
|
-
## [0.41.28](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.27...v0.41.28) (2021-01-26)
|
|
1217
|
-
|
|
1218
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1219
|
-
|
|
1220
|
-
# Change Log
|
|
1221
|
-
|
|
1222
|
-
All notable changes to this project will be documented in this file. See
|
|
1223
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1224
|
-
|
|
1225
|
-
## [0.41.27](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.26...v0.41.27) (2021-01-20)
|
|
1226
|
-
|
|
1227
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1228
|
-
|
|
1229
|
-
## [0.41.26](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.25...v0.41.26) (2021-01-19)
|
|
1230
|
-
|
|
1231
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1232
|
-
|
|
1233
|
-
## [0.41.25](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.24...v0.41.25) (2021-01-18)
|
|
1234
|
-
|
|
1235
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1236
|
-
|
|
1237
|
-
## [0.41.24](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.23...v0.41.24) (2021-01-15)
|
|
1238
|
-
|
|
1239
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1240
|
-
|
|
1241
|
-
## [0.41.23](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.22...v0.41.23) (2021-01-15)
|
|
1242
|
-
|
|
1243
|
-
### Bug Fixes
|
|
1244
|
-
|
|
1245
|
-
- **types:** add peak, status properties to MeterChartOptions interface
|
|
1246
|
-
([#924](https://github.com/carbon-design-system/carbon-charts/issues/924))
|
|
1247
|
-
([ffff193](https://github.com/carbon-design-system/carbon-charts/commit/ffff19380e391fc603600e2630f7bb583a6a335b)),
|
|
1248
|
-
closes
|
|
1249
|
-
[#920](https://github.com/carbon-design-system/carbon-charts/issues/920)
|
|
1250
|
-
|
|
1251
|
-
## [0.41.22](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.21...v0.41.22) (2021-01-15)
|
|
1252
|
-
|
|
1253
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1254
|
-
|
|
1255
|
-
# Change Log
|
|
1256
|
-
|
|
1257
|
-
All notable changes to this project will be documented in this file. See
|
|
1258
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1259
|
-
|
|
1260
|
-
## [0.41.21](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.20...v0.41.21) (2021-01-13)
|
|
1261
|
-
|
|
1262
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1263
|
-
|
|
1264
|
-
## [0.41.20](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.19...v0.41.20) (2021-01-13)
|
|
1265
|
-
|
|
1266
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1267
|
-
|
|
1268
|
-
## [0.41.19](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.18...v0.41.19) (2021-01-13)
|
|
1269
|
-
|
|
1270
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1271
|
-
|
|
1272
|
-
## [0.41.18](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.17...v0.41.18) (2021-01-13)
|
|
1273
|
-
|
|
1274
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1275
|
-
|
|
1276
|
-
## [0.41.17](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.16...v0.41.17) (2021-01-13)
|
|
1277
|
-
|
|
1278
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1279
|
-
|
|
1280
|
-
## [0.41.16](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.15...v0.41.16) (2021-01-13)
|
|
1281
|
-
|
|
1282
|
-
### Bug Fixes
|
|
1283
|
-
|
|
1284
|
-
- **core:** add number to the donut center interface
|
|
1285
|
-
([#929](https://github.com/carbon-design-system/carbon-charts/issues/929))
|
|
1286
|
-
([2f012a7](https://github.com/carbon-design-system/carbon-charts/commit/2f012a7915c3250b1044016330b91bc4e76206d8))
|
|
1287
|
-
|
|
1288
|
-
## [0.41.15](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.14...v0.41.15) (2021-01-07)
|
|
1289
|
-
|
|
1290
|
-
### Bug Fixes
|
|
1291
|
-
|
|
1292
|
-
- set definedZoomBarData to zoom bar data
|
|
1293
|
-
([#909](https://github.com/carbon-design-system/carbon-charts/issues/909))
|
|
1294
|
-
([d446e47](https://github.com/carbon-design-system/carbon-charts/commit/d446e47bc618b638ddec1513e48c3fd0f01e3256))
|
|
1295
|
-
|
|
1296
|
-
## [0.41.14](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.13...v0.41.14) (2020-12-07)
|
|
1297
|
-
|
|
1298
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1299
|
-
|
|
1300
|
-
## [0.41.13](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.12...v0.41.13) (2020-12-07)
|
|
1301
|
-
|
|
1302
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1303
|
-
|
|
1304
|
-
## [0.41.12](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.11...v0.41.12) (2020-12-07)
|
|
1305
|
-
|
|
1306
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1307
|
-
|
|
1308
|
-
## [0.41.11](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.10...v0.41.11) (2020-12-04)
|
|
1309
|
-
|
|
1310
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1311
|
-
|
|
1312
|
-
## [0.41.10](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.9...v0.41.10) (2020-12-01)
|
|
1313
|
-
|
|
1314
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1315
|
-
|
|
1316
|
-
## [0.41.9](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.8...v0.41.9) (2020-11-27)
|
|
1317
|
-
|
|
1318
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1319
|
-
|
|
1320
|
-
## [0.41.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.7...v0.41.8) (2020-11-26)
|
|
1321
|
-
|
|
1322
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1323
|
-
|
|
1324
|
-
# Change Log
|
|
1325
|
-
|
|
1326
|
-
All notable changes to this project will be documented in this file. See
|
|
1327
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1328
|
-
|
|
1329
|
-
## [0.41.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.6...v0.41.7) (2020-11-26)
|
|
1330
|
-
|
|
1331
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1332
|
-
|
|
1333
|
-
## [0.41.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.5...v0.41.6) (2020-11-20)
|
|
1334
|
-
|
|
1335
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1336
|
-
|
|
1337
|
-
## [0.41.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.4...v0.41.5) (2020-11-19)
|
|
1338
|
-
|
|
1339
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1340
|
-
|
|
1341
|
-
## [0.41.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.3...v0.41.4) (2020-11-16)
|
|
1342
|
-
|
|
1343
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1344
|
-
|
|
1345
|
-
## [0.41.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.2...v0.41.3) (2020-11-16)
|
|
1346
|
-
|
|
1347
|
-
### Bug Fixes
|
|
1348
|
-
|
|
1349
|
-
- **core:** use fill:transparent for toolbar controls
|
|
1350
|
-
([#884](https://github.com/carbon-design-system/carbon-charts/issues/884))
|
|
1351
|
-
([681ec23](https://github.com/carbon-design-system/carbon-charts/commit/681ec23705d54bbf47f0e71655983ecbbebc7dd8))
|
|
1352
|
-
|
|
1353
|
-
## [0.41.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.1...v0.41.2) (2020-11-13)
|
|
1354
|
-
|
|
1355
|
-
### Bug Fixes
|
|
1356
|
-
|
|
1357
|
-
- **core:** sanitize user provided axis domains
|
|
1358
|
-
([5865b7a](https://github.com/carbon-design-system/carbon-charts/commit/5865b7a16ea424314115b05af818eed9449d2564))
|
|
1359
|
-
- **core:** tooltips should hide when mouseout is triggered on the chart
|
|
1360
|
-
holder
|
|
1361
|
-
([#887](https://github.com/carbon-design-system/carbon-charts/issues/887))
|
|
1362
|
-
([9ee5210](https://github.com/carbon-design-system/carbon-charts/commit/9ee5210497032108857f503b69eff2c73b22cf06))
|
|
1363
|
-
|
|
1364
|
-
## [0.41.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.0...v0.41.1) (2020-11-10)
|
|
1365
|
-
|
|
1366
|
-
### Bug Fixes
|
|
1367
|
-
|
|
1368
|
-
- **core:** correct axis title paddings in y-axes
|
|
1369
|
-
([#873](https://github.com/carbon-design-system/carbon-charts/issues/873))
|
|
1370
|
-
([8a27a5f](https://github.com/carbon-design-system/carbon-charts/commit/8a27a5f65cbc55a878e603c9aa96c6f38d6ea10d)),
|
|
1371
|
-
closes
|
|
1372
|
-
[#859](https://github.com/carbon-design-system/carbon-charts/issues/859)
|
|
1373
|
-
|
|
1374
|
-
# Change Log
|
|
1375
|
-
|
|
1376
|
-
All notable changes to this project will be documented in this file. See
|
|
1377
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1378
|
-
|
|
1379
|
-
# [0.41.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.40.14...v0.41.0) (2020-11-10)
|
|
1380
|
-
|
|
1381
|
-
### Bug Fixes
|
|
1382
|
-
|
|
1383
|
-
- use fill:none to allow transparent toolbar control background
|
|
1384
|
-
([#858](https://github.com/carbon-design-system/carbon-charts/issues/858))
|
|
1385
|
-
([e4bf1bf](https://github.com/carbon-design-system/carbon-charts/commit/e4bf1bf45f59b5a4521aa2b6e5856715f148b1d5))
|
|
1386
|
-
- **core:** only set zoombar data and sanitize date values if a cartesian
|
|
1387
|
-
time-series chart
|
|
1388
|
-
([88c8fa1](https://github.com/carbon-design-system/carbon-charts/commit/88c8fa1feee0d8866608bc39426638afb1c81294))
|
|
1389
|
-
|
|
1390
|
-
### Features
|
|
1391
|
-
|
|
1392
|
-
- **core:** add alignment options for gauge charts
|
|
1393
|
-
([#877](https://github.com/carbon-design-system/carbon-charts/issues/877))
|
|
1394
|
-
([5d4a621](https://github.com/carbon-design-system/carbon-charts/commit/5d4a621e4b92e3e1fdaa9a3318467c84379e8881))
|
|
1395
|
-
|
|
1396
|
-
## [0.40.14](https://github.com/carbon-design-system/carbon-charts/compare/v0.40.13...v0.40.14) (2020-11-09)
|
|
1397
|
-
|
|
1398
|
-
### Bug Fixes
|
|
1399
|
-
|
|
1400
|
-
- **core:** replace import to lodash with lodash-es
|
|
1401
|
-
([700ba09](https://github.com/carbon-design-system/carbon-charts/commit/700ba0989ca130c2b750acc868b5bc36192f6f07))
|
|
1402
|
-
|
|
1403
|
-
## [0.40.13](https://github.com/carbon-design-system/carbon-charts/compare/v0.40.12...v0.40.13) (2020-11-06)
|
|
1404
|
-
|
|
1405
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1406
|
-
|
|
1407
|
-
## [0.40.12](https://github.com/carbon-design-system/carbon-charts/compare/v0.40.11...v0.40.12) (2020-11-06)
|
|
1408
|
-
|
|
1409
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1410
|
-
|
|
1411
|
-
## [0.40.11](https://github.com/carbon-design-system/carbon-charts/compare/v0.40.10...v0.40.11) (2020-11-03)
|
|
1412
|
-
|
|
1413
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1414
|
-
|
|
1415
|
-
## [0.40.10](https://github.com/carbon-design-system/carbon-charts/compare/v0.40.9...v0.40.10) (2020-11-03)
|
|
1416
|
-
|
|
1417
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1418
|
-
|
|
1419
|
-
## [0.40.9](https://github.com/carbon-design-system/carbon-charts/compare/v0.40.8...v0.40.9) (2020-11-03)
|
|
1420
|
-
|
|
1421
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1422
|
-
|
|
1423
|
-
# Change Log
|
|
1424
|
-
|
|
1425
|
-
All notable changes to this project will be documented in this file. See
|
|
1426
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1427
|
-
|
|
1428
|
-
## [0.40.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.40.7...v0.40.8) (2020-11-02)
|
|
1429
|
-
|
|
1430
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1431
|
-
|
|
1432
|
-
## [0.40.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.40.6...v0.40.7) (2020-10-30)
|
|
1433
|
-
|
|
1434
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1435
|
-
|
|
1436
|
-
## [0.40.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.40.5...v0.40.6) (2020-10-30)
|
|
1437
|
-
|
|
1438
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1439
|
-
|
|
1440
|
-
## [0.40.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.40.4...v0.40.5) (2020-10-30)
|
|
1441
|
-
|
|
1442
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1443
|
-
|
|
1444
|
-
## [0.40.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.40.3...v0.40.4) (2020-10-29)
|
|
1445
|
-
|
|
1446
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1447
|
-
|
|
1448
|
-
## [0.40.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.40.2...v0.40.3) (2020-10-28)
|
|
1449
|
-
|
|
1450
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1451
|
-
|
|
1452
|
-
## [0.40.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.40.1...v0.40.2) (2020-10-27)
|
|
1453
|
-
|
|
1454
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1455
|
-
|
|
1456
|
-
## [0.40.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.40.0...v0.40.1) (2020-10-22)
|
|
1457
|
-
|
|
1458
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1459
|
-
|
|
1460
|
-
# [0.40.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.39.1...v0.40.0) (2020-10-08)
|
|
1461
|
-
|
|
1462
|
-
### Bug Fixes
|
|
1463
|
-
|
|
1464
|
-
- **core:** fix Legend and Tooltip group color
|
|
1465
|
-
([#834](https://github.com/carbon-design-system/carbon-charts/issues/834))
|
|
1466
|
-
([da4c9f4](https://github.com/carbon-design-system/carbon-charts/commit/da4c9f4d5da605f19db87fde9ab4caa45056373d)),
|
|
1467
|
-
closes
|
|
1468
|
-
[#828](https://github.com/carbon-design-system/carbon-charts/issues/828)
|
|
1469
|
-
[#828](https://github.com/carbon-design-system/carbon-charts/issues/828)
|
|
1470
|
-
|
|
1471
|
-
### Features
|
|
1472
|
-
|
|
1473
|
-
- provide option to refresh range axis label
|
|
1474
|
-
([#766](https://github.com/carbon-design-system/carbon-charts/issues/766))
|
|
1475
|
-
([070f9e3](https://github.com/carbon-design-system/carbon-charts/commit/070f9e38481362e1ad55f036915deb66d8a16648))
|
|
1476
|
-
|
|
1477
|
-
## [0.39.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.39.0...v0.39.1) (2020-10-05)
|
|
1478
|
-
|
|
1479
|
-
### Bug Fixes
|
|
1480
|
-
|
|
1481
|
-
- **core:** fix division by zero & timescale issues
|
|
1482
|
-
([#829](https://github.com/carbon-design-system/carbon-charts/issues/829))
|
|
1483
|
-
([ce9a2ab](https://github.com/carbon-design-system/carbon-charts/commit/ce9a2abdace0eef5ca6bdffa168992972d7f5848))
|
|
1484
|
-
|
|
1485
|
-
# [0.39.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.38.8...v0.39.0) (2020-10-01)
|
|
1486
|
-
|
|
1487
|
-
### Features
|
|
1488
|
-
|
|
1489
|
-
- **core:** allow custom labels for total & group in tooltips
|
|
1490
|
-
([#826](https://github.com/carbon-design-system/carbon-charts/issues/826))
|
|
1491
|
-
([6946477](https://github.com/carbon-design-system/carbon-charts/commit/69464778ed4fdd2230cf5ca93162ec11b310e580))
|
|
1492
|
-
|
|
1493
|
-
## [0.38.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.38.7...v0.38.8) (2020-09-30)
|
|
1494
|
-
|
|
1495
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1496
|
-
|
|
1497
|
-
## [0.38.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.38.6...v0.38.7) (2020-09-23)
|
|
1498
|
-
|
|
1499
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1500
|
-
|
|
1501
|
-
# Change Log
|
|
1502
|
-
|
|
1503
|
-
All notable changes to this project will be documented in this file. See
|
|
1504
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1505
|
-
|
|
1506
|
-
## [0.38.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.38.5...v0.38.6) (2020-09-22)
|
|
1507
|
-
|
|
1508
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1509
|
-
|
|
1510
|
-
## [0.38.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.38.4...v0.38.5) (2020-09-22)
|
|
1511
|
-
|
|
1512
|
-
### Bug Fixes
|
|
1513
|
-
|
|
1514
|
-
- do not dispatch zoom domain change event for all zoom bar behaviors
|
|
1515
|
-
([#811](https://github.com/carbon-design-system/carbon-charts/issues/811))
|
|
1516
|
-
([5fd692f](https://github.com/carbon-design-system/carbon-charts/commit/5fd692f9e71dbf4b3e9052feb6c99cb25156c5da))
|
|
1517
|
-
|
|
1518
|
-
## [0.38.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.38.3...v0.38.4) (2020-09-21)
|
|
1519
|
-
|
|
1520
|
-
### Bug Fixes
|
|
1521
|
-
|
|
1522
|
-
- **core:** fix valueFormatter not being called on non-axis tooltips
|
|
1523
|
-
([#809](https://github.com/carbon-design-system/carbon-charts/issues/809))
|
|
1524
|
-
([b1ff24c](https://github.com/carbon-design-system/carbon-charts/commit/b1ff24c70c8291ef8dab5585866a12ef99fd6e6f))
|
|
1525
|
-
|
|
1526
|
-
## [0.38.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.38.2...v0.38.3) (2020-09-21)
|
|
1527
|
-
|
|
1528
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1529
|
-
|
|
1530
|
-
## [0.38.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.38.1...v0.38.2) (2020-09-17)
|
|
1531
|
-
|
|
1532
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1533
|
-
|
|
1534
|
-
## [0.38.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.38.0...v0.38.1) (2020-09-17)
|
|
1535
|
-
|
|
1536
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1537
|
-
|
|
1538
|
-
# [0.38.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.37.1...v0.38.0) (2020-09-15)
|
|
1539
|
-
|
|
1540
|
-
### Features
|
|
1541
|
-
|
|
1542
|
-
- **core:** enable or disable ruler
|
|
1543
|
-
([#765](https://github.com/carbon-design-system/carbon-charts/issues/765))
|
|
1544
|
-
([bef6daf](https://github.com/carbon-design-system/carbon-charts/commit/bef6daf53e2c7c825d39daa160e9f721ddec0b29))
|
|
1545
|
-
|
|
1546
|
-
## [0.37.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.37.0...v0.37.1) (2020-09-14)
|
|
1547
|
-
|
|
1548
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1549
|
-
|
|
1550
|
-
# [0.37.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.36.4...v0.37.0) (2020-09-11)
|
|
1551
|
-
|
|
1552
|
-
### Features
|
|
1553
|
-
|
|
1554
|
-
- create options for tick rotation
|
|
1555
|
-
([#770](https://github.com/carbon-design-system/carbon-charts/issues/770))
|
|
1556
|
-
([4063c8a](https://github.com/carbon-design-system/carbon-charts/commit/4063c8a0f4d441589116759b32f2b214fad46154))
|
|
1557
|
-
- enable or disable scatter dot on charts except scatter chart
|
|
1558
|
-
([#769](https://github.com/carbon-design-system/carbon-charts/issues/769))
|
|
1559
|
-
([3131942](https://github.com/carbon-design-system/carbon-charts/commit/313194217318719152d6a14c2a3cba957b8fc009))
|
|
1560
|
-
|
|
1561
|
-
## [0.36.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.36.3...v0.36.4) (2020-09-10)
|
|
1562
|
-
|
|
1563
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1564
|
-
|
|
1565
|
-
## [0.36.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.36.2...v0.36.3) (2020-09-10)
|
|
1566
|
-
|
|
1567
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1568
|
-
|
|
1569
|
-
## [0.36.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.36.1...v0.36.2) (2020-09-02)
|
|
1570
|
-
|
|
1571
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1572
|
-
|
|
1573
|
-
## [0.36.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.36.0...v0.36.1) (2020-09-01)
|
|
1574
|
-
|
|
1575
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1576
|
-
|
|
1577
|
-
# [0.36.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.35.3...v0.36.0) (2020-08-25)
|
|
1578
|
-
|
|
1579
|
-
### Features
|
|
1580
|
-
|
|
1581
|
-
- change zoom bar handle cursor to ew-resize
|
|
1582
|
-
([#759](https://github.com/carbon-design-system/carbon-charts/issues/759))
|
|
1583
|
-
([f1fdab0](https://github.com/carbon-design-system/carbon-charts/commit/f1fdab005c09cb76984b3a7d17df24b7a860effd))
|
|
1584
|
-
|
|
1585
|
-
## [0.35.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.35.2...v0.35.3) (2020-08-21)
|
|
1586
|
-
|
|
1587
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1588
|
-
|
|
1589
|
-
## [0.35.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.35.1...v0.35.2) (2020-08-21)
|
|
1590
|
-
|
|
1591
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1592
|
-
|
|
1593
|
-
## [0.35.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.35.0...v0.35.1) (2020-08-18)
|
|
1594
|
-
|
|
1595
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1596
|
-
|
|
1597
|
-
# Change Log
|
|
1598
|
-
|
|
1599
|
-
All notable changes to this project will be documented in this file. See
|
|
1600
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1601
|
-
|
|
1602
|
-
# [0.35.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.34.11...v0.35.0) (2020-08-13)
|
|
1603
|
-
|
|
1604
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1605
|
-
|
|
1606
|
-
## [0.34.11](https://github.com/carbon-design-system/carbon-charts/compare/v0.34.10...v0.34.11) (2020-08-12)
|
|
1607
|
-
|
|
1608
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1609
|
-
|
|
1610
|
-
## [0.34.10](https://github.com/carbon-design-system/carbon-charts/compare/v0.34.9...v0.34.10) (2020-08-11)
|
|
1611
|
-
|
|
1612
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1613
|
-
|
|
1614
|
-
# Change Log
|
|
1615
|
-
|
|
1616
|
-
All notable changes to this project will be documented in this file. See
|
|
1617
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1618
|
-
|
|
1619
|
-
## [0.34.9](https://github.com/carbon-design-system/carbon-charts/compare/v0.34.8...v0.34.9) (2020-08-06)
|
|
1620
|
-
|
|
1621
|
-
### Bug Fixes
|
|
1622
|
-
|
|
1623
|
-
- fix tooltip position with zoom bar enabled
|
|
1624
|
-
([#732](https://github.com/carbon-design-system/carbon-charts/issues/732))
|
|
1625
|
-
([280ab5e](https://github.com/carbon-design-system/carbon-charts/commit/280ab5edb2770c2b30f988b37e72c2c6f40016ff))
|
|
1626
|
-
|
|
1627
|
-
## [0.34.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.34.7...v0.34.8) (2020-07-30)
|
|
1628
|
-
|
|
1629
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1630
|
-
|
|
1631
|
-
# Change Log
|
|
1632
|
-
|
|
1633
|
-
All notable changes to this project will be documented in this file. See
|
|
1634
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1635
|
-
|
|
1636
|
-
## [0.34.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.34.6...v0.34.7) (2020-07-29)
|
|
1637
|
-
|
|
1638
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1639
|
-
|
|
1640
|
-
## [0.34.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.34.5...v0.34.6) (2020-07-27)
|
|
1641
|
-
|
|
1642
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1643
|
-
|
|
1644
|
-
## [0.34.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.34.4...v0.34.5) (2020-07-22)
|
|
1645
|
-
|
|
1646
|
-
### Bug Fixes
|
|
1647
|
-
|
|
1648
|
-
- fix pie chart alignment
|
|
1649
|
-
([#716](https://github.com/carbon-design-system/carbon-charts/issues/716))
|
|
1650
|
-
([638c331](https://github.com/carbon-design-system/carbon-charts/commit/638c331b7fa8fbc73cf557cf99a6b3af2435b492))
|
|
1651
|
-
|
|
1652
|
-
# Change Log
|
|
1653
|
-
|
|
1654
|
-
All notable changes to this project will be documented in this file. See
|
|
1655
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1656
|
-
|
|
1657
|
-
## [0.34.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.34.3...v0.34.4) (2020-07-21)
|
|
1658
|
-
|
|
1659
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1660
|
-
|
|
1661
|
-
## [0.34.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.34.2...v0.34.3) (2020-07-20)
|
|
1662
|
-
|
|
1663
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1664
|
-
|
|
1665
|
-
## [0.34.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.34.1...v0.34.2) (2020-07-15)
|
|
1666
|
-
|
|
1667
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1668
|
-
|
|
1669
|
-
## [0.34.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.34.0...v0.34.1) (2020-07-14)
|
|
1670
|
-
|
|
1671
|
-
### Bug Fixes
|
|
1672
|
-
|
|
1673
|
-
- **core, react, angular, vue, svelte:** render both vertical and horizontal
|
|
1674
|
-
thresholds
|
|
1675
|
-
([#706](https://github.com/carbon-design-system/carbon-charts/issues/706))
|
|
1676
|
-
([90f55d2](https://github.com/carbon-design-system/carbon-charts/commit/90f55d247f7535467eacca3477d75980e4c0e25f))
|
|
1677
|
-
|
|
1678
|
-
# [0.34.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.33.1...v0.34.0) (2020-07-14)
|
|
1679
|
-
|
|
1680
|
-
### Bug Fixes
|
|
1681
|
-
|
|
1682
|
-
- add role fallback value for legend
|
|
1683
|
-
([#702](https://github.com/carbon-design-system/carbon-charts/issues/702))
|
|
1684
|
-
([e272d3e](https://github.com/carbon-design-system/carbon-charts/commit/e272d3ef0edbf70318b3bb58bd1facc0d40fa568))
|
|
1685
|
-
|
|
1686
|
-
### Features
|
|
1687
|
-
|
|
1688
|
-
- **core:** add title element to main SVG
|
|
1689
|
-
([#704](https://github.com/carbon-design-system/carbon-charts/issues/704))
|
|
1690
|
-
([c75e1bb](https://github.com/carbon-design-system/carbon-charts/commit/c75e1bbb6fcf15120ea1513ef3ec50d30a46a11d))
|
|
1691
|
-
|
|
1692
|
-
# Change Log
|
|
1693
|
-
|
|
1694
|
-
All notable changes to this project will be documented in this file. See
|
|
1695
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1696
|
-
|
|
1697
|
-
## [0.33.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.33.0...v0.33.1) (2020-07-08)
|
|
1698
|
-
|
|
1699
|
-
### Bug Fixes
|
|
1700
|
-
|
|
1701
|
-
- fix bar chart tooltip data
|
|
1702
|
-
([#692](https://github.com/carbon-design-system/carbon-charts/issues/692))
|
|
1703
|
-
([05e4bb3](https://github.com/carbon-design-system/carbon-charts/commit/05e4bb364ac96697aefa4c2096b391fc248e2369))
|
|
1704
|
-
|
|
1705
|
-
# [0.33.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.12...v0.33.0) (2020-07-07)
|
|
1706
|
-
|
|
1707
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1708
|
-
|
|
1709
|
-
# Change Log
|
|
1710
|
-
|
|
1711
|
-
All notable changes to this project will be documented in this file. See
|
|
1712
|
-
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
1713
|
-
|
|
1714
|
-
## [0.32.12](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.11...v0.32.12) (2020-06-26)
|
|
1715
|
-
|
|
1716
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1717
|
-
|
|
1718
|
-
## [0.32.11](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.10...v0.32.11) (2020-06-24)
|
|
1719
|
-
|
|
1720
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1721
|
-
|
|
1722
|
-
## [0.32.10](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.9...v0.32.10) (2020-06-24)
|
|
1723
|
-
|
|
1724
|
-
### Bug Fixes
|
|
1725
|
-
|
|
1726
|
-
- **core:** fix gauge charts without a delta number
|
|
1727
|
-
([#680](https://github.com/carbon-design-system/carbon-charts/issues/680))
|
|
1728
|
-
([f65a084](https://github.com/carbon-design-system/carbon-charts/commit/f65a084bb66f1e8241fdbd6b101daf98d059d548))
|
|
1729
|
-
|
|
1730
|
-
## [0.32.9](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.8...v0.32.9) (2020-06-23)
|
|
1731
|
-
|
|
1732
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1733
|
-
|
|
1734
|
-
## [0.32.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.7...v0.32.8) (2020-06-19)
|
|
1735
|
-
|
|
1736
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1737
|
-
|
|
1738
|
-
## [0.32.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.6...v0.32.7) (2020-06-16)
|
|
1739
|
-
|
|
1740
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1741
|
-
|
|
1742
|
-
## [0.32.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.5...v0.32.6) (2020-06-12)
|
|
1743
|
-
|
|
1744
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1745
|
-
|
|
1746
|
-
## [0.32.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.4...v0.32.5) (2020-06-11)
|
|
1747
|
-
|
|
1748
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1749
|
-
|
|
1750
|
-
## [0.32.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.3...v0.32.4) (2020-06-10)
|
|
1751
|
-
|
|
1752
|
-
### Bug Fixes
|
|
1753
|
-
|
|
1754
|
-
- update tslint and prettier options
|
|
1755
|
-
([#661](https://github.com/carbon-design-system/carbon-charts/issues/661))
|
|
1756
|
-
([ebc53d9](https://github.com/carbon-design-system/carbon-charts/commit/ebc53d9f4caea047f656ae98075b9c8ca307b280))
|
|
1757
|
-
|
|
1758
|
-
## [0.32.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.2...v0.32.3) (2020-06-08)
|
|
1759
|
-
|
|
1760
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1761
|
-
|
|
1762
|
-
## [0.32.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.1...v0.32.2) (2020-06-05)
|
|
1763
|
-
|
|
1764
|
-
### Bug Fixes
|
|
1765
|
-
|
|
1766
|
-
- **core, angular, react, vue, svelte:** fix scatter graph data updates
|
|
1767
|
-
([#654](https://github.com/carbon-design-system/carbon-charts/issues/654))
|
|
1768
|
-
([673d627](https://github.com/carbon-design-system/carbon-charts/commit/673d627f47274b9815ef94e4a48bb25485e1b9a3))
|
|
1769
|
-
|
|
1770
|
-
## [0.32.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.32.0...v0.32.1) (2020-06-03)
|
|
1771
|
-
|
|
1772
|
-
### Bug Fixes
|
|
1773
|
-
|
|
1774
|
-
- fix missing title option in charts interface
|
|
1775
|
-
([b74d658](https://github.com/carbon-design-system/carbon-charts/commit/b74d6582277632c8a2a1f460f3ce73aadd40e500))
|
|
1776
|
-
|
|
1777
|
-
# [0.32.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.24...v0.32.0) (2020-05-29)
|
|
1778
|
-
|
|
1779
|
-
### Bug Fixes
|
|
1780
|
-
|
|
1781
|
-
- **core:** threshold - support non JS-date values
|
|
1782
|
-
([a132497](https://github.com/carbon-design-system/carbon-charts/commit/a1324972fa5266151b490cb7eeed92a92da5b2c4))
|
|
1783
|
-
- **svelte:** copy svelte source to dist/src
|
|
1784
|
-
([492a504](https://github.com/carbon-design-system/carbon-charts/commit/492a50470d2b64793bd2c67c4115bb2732bc44f7))
|
|
1785
|
-
|
|
1786
|
-
# [0.31.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.24...v0.31.0) (2020-05-29)
|
|
1787
|
-
|
|
1788
|
-
### Bug Fixes
|
|
1789
|
-
|
|
1790
|
-
- **core:** threshold - support non JS-date values
|
|
1791
|
-
([a132497](https://github.com/carbon-design-system/carbon-charts/commit/a1324972fa5266151b490cb7eeed92a92da5b2c4))
|
|
1792
|
-
- **svelte:** copy svelte source to dist/src
|
|
1793
|
-
([492a504](https://github.com/carbon-design-system/carbon-charts/commit/492a50470d2b64793bd2c67c4115bb2732bc44f7))
|
|
1794
|
-
|
|
1795
|
-
## [0.30.24](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.23...v0.30.24) (2020-05-15)
|
|
1796
|
-
|
|
1797
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1798
|
-
|
|
1799
|
-
## [0.30.23](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.22...v0.30.23) (2020-05-13)
|
|
1800
|
-
|
|
1801
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1802
|
-
|
|
1803
|
-
## [0.30.22](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.21...v0.30.22) (2020-05-13)
|
|
1804
|
-
|
|
1805
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1806
|
-
|
|
1807
|
-
## [0.30.21](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.20...v0.30.21) (2020-05-11)
|
|
1808
|
-
|
|
1809
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1810
|
-
|
|
1811
|
-
## [0.30.20](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.19...v0.30.20) (2020-05-08)
|
|
1812
|
-
|
|
1813
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1814
|
-
|
|
1815
|
-
## [0.30.19](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.18...v0.30.19) (2020-05-01)
|
|
1816
|
-
|
|
1817
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1818
|
-
|
|
1819
|
-
## [0.30.18](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.17...v0.30.18) (2020-04-24)
|
|
1820
|
-
|
|
1821
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1822
|
-
|
|
1823
|
-
## [0.30.17](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.16...v0.30.17) (2020-04-23)
|
|
1824
|
-
|
|
1825
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1826
|
-
|
|
1827
|
-
## [0.30.16](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.15...v0.30.16) (2020-04-23)
|
|
1828
|
-
|
|
1829
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1830
|
-
|
|
1831
|
-
## [0.30.15](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.14...v0.30.15) (2020-04-22)
|
|
1832
|
-
|
|
1833
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1834
|
-
|
|
1835
|
-
## [0.30.14](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.13...v0.30.14) (2020-04-21)
|
|
1836
|
-
|
|
1837
|
-
### Bug Fixes
|
|
1838
|
-
|
|
1839
|
-
- **core:** Support for Horizontal Line and Scatter Chart
|
|
1840
|
-
([28b571f](https://github.com/carbon-design-system/carbon-charts/commit/28b571fa4565de5b81a5a178776eb701a88bfe91))
|
|
1841
|
-
|
|
1842
|
-
## [0.30.13](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.12...v0.30.13) (2020-04-20)
|
|
1843
|
-
|
|
1844
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1845
|
-
|
|
1846
|
-
## [0.30.12](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.11...v0.30.12) (2020-04-17)
|
|
1847
|
-
|
|
1848
|
-
### Bug Fixes
|
|
1849
|
-
|
|
1850
|
-
- **core:** fix backwards compatibility for pie/donut
|
|
1851
|
-
([#576](https://github.com/carbon-design-system/carbon-charts/issues/576))
|
|
1852
|
-
([aed1a4d](https://github.com/carbon-design-system/carbon-charts/commit/aed1a4dbb2d5ff8f85ac29b69b32c1035a326071))
|
|
1853
|
-
|
|
1854
|
-
## [0.30.11](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.10...v0.30.11) (2020-04-15)
|
|
1855
|
-
|
|
1856
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1857
|
-
|
|
1858
|
-
## [0.30.10](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.9...v0.30.10) (2020-04-09)
|
|
1859
|
-
|
|
1860
|
-
### Bug Fixes
|
|
1861
|
-
|
|
1862
|
-
- **core:** title string contains html ascii characters
|
|
1863
|
-
([#547](https://github.com/carbon-design-system/carbon-charts/issues/547))
|
|
1864
|
-
([1a6b646](https://github.com/carbon-design-system/carbon-charts/commit/1a6b6463f576c1ba297883e734a4a953e4a22829))
|
|
1865
|
-
|
|
1866
|
-
## [0.30.9](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.8...v0.30.9) (2020-04-09)
|
|
1867
|
-
|
|
1868
|
-
### Bug Fixes
|
|
1869
|
-
|
|
1870
|
-
- **bar-stacked:** render 0 value bars
|
|
1871
|
-
([425e11d](https://github.com/carbon-design-system/carbon-charts/commit/425e11d9dacb8bbaf9740759754eab1f0aa45843))
|
|
1872
|
-
|
|
1873
|
-
## [0.30.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.7...v0.30.8) (2020-04-03)
|
|
1874
|
-
|
|
1875
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1876
|
-
|
|
1877
|
-
## [0.30.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.6...v0.30.7) (2020-03-31)
|
|
1878
|
-
|
|
1879
|
-
### Bug Fixes
|
|
1880
|
-
|
|
1881
|
-
- **core:** update import path carbon-components
|
|
1882
|
-
([e9fca73](https://github.com/carbon-design-system/carbon-charts/commit/e9fca73cd3768b1b85247a2798908c26da99216b)),
|
|
1883
|
-
closes
|
|
1884
|
-
[#546](https://github.com/carbon-design-system/carbon-charts/issues/546)
|
|
1885
|
-
|
|
1886
|
-
## [0.30.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.5...v0.30.6) (2020-03-30)
|
|
1887
|
-
|
|
1888
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1889
|
-
|
|
1890
|
-
## [0.30.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.4...v0.30.5) (2020-03-30)
|
|
1891
|
-
|
|
1892
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1893
|
-
|
|
1894
|
-
## [0.30.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.3...v0.30.4) (2020-03-27)
|
|
1895
|
-
|
|
1896
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1897
|
-
|
|
1898
|
-
## [0.30.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.2...v0.30.3) (2020-03-24)
|
|
1899
|
-
|
|
1900
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1901
|
-
|
|
1902
|
-
## [0.30.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.1...v0.30.2) (2020-03-16)
|
|
1903
|
-
|
|
1904
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1905
|
-
|
|
1906
|
-
## [0.30.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.0...v0.30.1) (2020-03-13)
|
|
1907
|
-
|
|
1908
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1909
|
-
|
|
1910
|
-
# [0.30.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.29.8...v0.30.0) (2020-03-11)
|
|
1911
|
-
|
|
1912
|
-
### Bug Fixes
|
|
1913
|
-
|
|
1914
|
-
- **core:** fix default axes creation logic
|
|
1915
|
-
([e4fb861](https://github.com/carbon-design-system/carbon-charts/commit/e4fb86185f04ff42cbe7dc003c05556586f6c518))
|
|
1916
|
-
|
|
1917
|
-
### Features
|
|
1918
|
-
|
|
1919
|
-
- **core:** Add configuration option to not include 0 on axes
|
|
1920
|
-
([44d51de](https://github.com/carbon-design-system/carbon-charts/commit/44d51ded6af78d57a848d68e093fe69858405594))
|
|
1921
|
-
- **core:** Axes configuration options defaultable, Add option to not include
|
|
1922
|
-
0 on axes
|
|
1923
|
-
([03969c3](https://github.com/carbon-design-system/carbon-charts/commit/03969c319248064cf1c1ef6eb79ec534aa04c972))
|
|
1924
|
-
|
|
1925
|
-
## [0.29.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.29.7...v0.29.8) (2020-03-03)
|
|
1926
|
-
|
|
1927
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1928
|
-
|
|
1929
|
-
## [0.29.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.29.6...v0.29.7) (2020-02-28)
|
|
1930
|
-
|
|
1931
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1932
|
-
|
|
1933
|
-
## [0.29.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.29.5...v0.29.6) (2020-02-25)
|
|
1934
|
-
|
|
1935
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1936
|
-
|
|
1937
|
-
## [0.29.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.29.4...v0.29.5) (2020-02-21)
|
|
1938
|
-
|
|
1939
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1940
|
-
|
|
1941
|
-
## [0.29.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.29.3...v0.29.4) (2020-02-20)
|
|
1942
|
-
|
|
1943
|
-
### Bug Fixes
|
|
1944
|
-
|
|
1945
|
-
- **core:** Tools.getProperty did return 'null' for falsy values, now returns
|
|
1946
|
-
the actual values
|
|
1947
|
-
([3b78c3a](https://github.com/carbon-design-system/carbon-charts/commit/3b78c3a27d4551e7d7b51f911ea2f7e0f155ef42))
|
|
1948
|
-
|
|
1949
|
-
## [0.29.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.29.2...v0.29.3) (2020-02-20)
|
|
1950
|
-
|
|
1951
|
-
### Bug Fixes
|
|
1952
|
-
|
|
1953
|
-
- **build:** fix bundle output for core
|
|
1954
|
-
([4d3d6b4](https://github.com/carbon-design-system/carbon-charts/commit/4d3d6b450fe54b55479aeaffc3706b28d926fffa))
|
|
1955
|
-
|
|
1956
|
-
## [0.29.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.29.1...v0.29.2) (2020-02-18)
|
|
1957
|
-
|
|
1958
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1959
|
-
|
|
1960
|
-
## [0.29.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.29.0...v0.29.1) (2020-02-10)
|
|
1961
|
-
|
|
1962
|
-
**Note:** Version bump only for package @carbon/charts
|
|
1963
|
-
|
|
1964
|
-
# [0.29.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.28.1...v0.29.0) (2020-02-07)
|
|
1965
|
-
|
|
1966
|
-
### Bug Fixes
|
|
1967
|
-
|
|
1968
|
-
- **bar:** tooltip to render bar should provide original datapoint
|
|
1969
|
-
([ed04f98](https://github.com/carbon-design-system/carbon-charts/commit/ed04f98891a783d8d5bbc77f9dfdb8d1ed8a46b1))
|
|
1970
|
-
- **charts:** simplify the interface to match
|
|
1971
|
-
([96da97b](https://github.com/carbon-design-system/carbon-charts/commit/96da97b59c2e22cb661b9297f1cb4ace9bb8ec9e))
|
|
1972
|
-
- **line:** remove console.logs
|
|
1973
|
-
([5e0413f](https://github.com/carbon-design-system/carbon-charts/commit/5e0413f6c77ae17f74818c04ed2bdf82f386fa58))
|
|
1974
|
-
- **lint:** fix linting errors with format
|
|
1975
|
-
([04cdefd](https://github.com/carbon-design-system/carbon-charts/commit/04cdefda021ef1dee948231e8713481b9439f287))
|
|
1976
|
-
- **scatter:** custom point colors demo
|
|
1977
|
-
([f367f83](https://github.com/carbon-design-system/carbon-charts/commit/f367f8337df8b45811afbc3eee0a3a6d3b6f8bcc))
|
|
1978
|
-
- **scatter:** simplify the callback parameters
|
|
1979
|
-
([c541e8a](https://github.com/carbon-design-system/carbon-charts/commit/c541e8a4a83d026bb5b9c28afe39f749064b3b24))
|
|
1980
|
-
- **styles:** don't import and use carbon themes in styles.scss
|
|
1981
|
-
([1da8b3e](https://github.com/carbon-design-system/carbon-charts/commit/1da8b3e2ba770c06dc74fe2bf08393e3d6b6778c))
|
|
1982
|
-
- **tooltip:** need to pass the datum along with the tooltip calls
|
|
1983
|
-
([3bd7bfc](https://github.com/carbon-design-system/carbon-charts/commit/3bd7bfc1d435cb4ba3636361cdbbfe16de10d9d5))
|
|
1984
|
-
- **tooltip:** stroke color should always be default
|
|
1985
|
-
([b3b6812](https://github.com/carbon-design-system/carbon-charts/commit/b3b6812d9fac5964ae50053332840be8d1b7246f))
|
|
1986
|
-
- **tooltip:** use original line color in the tooltip
|
|
1987
|
-
([f42d245](https://github.com/carbon-design-system/carbon-charts/commit/f42d2458bdd104898f79d1b7103bcd055bdb1cdf))
|
|
1988
|
-
|
|
1989
|
-
### Features
|
|
1990
|
-
|
|
1991
|
-
- **core:** parse non JS date objects within the model
|
|
1992
|
-
([a410fa4](https://github.com/carbon-design-system/carbon-charts/commit/a410fa415fb967ef0529495b300a0327cc4d474b))
|
|
1993
|
-
- **scatter:** add getIsFilled to model
|
|
1994
|
-
([a160159](https://github.com/carbon-design-system/carbon-charts/commit/a160159ee0fa188ce174ef36f022ad44caf77aeb))
|
|
1995
|
-
- **scatter:** enhance custom stroke and fill colors
|
|
1996
|
-
([64cfbb6](https://github.com/carbon-design-system/carbon-charts/commit/64cfbb657c6089ab75cf132f09a49d5da75d4c4f))
|
|
1997
|
-
|
|
1998
|
-
## [0.28.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.28.0...v0.28.1) (2020-01-30)
|
|
1999
|
-
|
|
2000
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2001
|
-
|
|
2002
|
-
# [0.28.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.27.0...v0.28.0) (2020-01-21)
|
|
2003
|
-
|
|
2004
|
-
### Features
|
|
2005
|
-
|
|
2006
|
-
- **core:** add support for horizontal bar charts
|
|
2007
|
-
([#415](https://github.com/carbon-design-system/carbon-charts/issues/415))
|
|
2008
|
-
([6a480f0](https://github.com/carbon-design-system/carbon-charts/commit/6a480f0))
|
|
2009
|
-
|
|
2010
|
-
# [0.27.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.26.1...v0.27.0) (2020-01-20)
|
|
2011
|
-
|
|
2012
|
-
### Bug Fixes
|
|
2013
|
-
|
|
2014
|
-
- **chart:** update isLegendEnabled instead of isEnabled
|
|
2015
|
-
([d413a8c](https://github.com/carbon-design-system/carbon-charts/commit/d413a8c))
|
|
2016
|
-
- **enabled:** rename visible to enabled
|
|
2017
|
-
([ac4862f](https://github.com/carbon-design-system/carbon-charts/commit/ac4862f))
|
|
2018
|
-
- **lint:** whitespace tslint issue
|
|
2019
|
-
([53216f5](https://github.com/carbon-design-system/carbon-charts/commit/53216f5))
|
|
2020
|
-
|
|
2021
|
-
### Features
|
|
2022
|
-
|
|
2023
|
-
- **chart:** legend.visible = false to hide the legend
|
|
2024
|
-
([6461128](https://github.com/carbon-design-system/carbon-charts/commit/6461128))
|
|
2025
|
-
|
|
2026
|
-
## [0.26.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.26.0...v0.26.1) (2020-01-20)
|
|
2027
|
-
|
|
2028
|
-
### Bug Fixes
|
|
2029
|
-
|
|
2030
|
-
- **axis:** better support small time scales
|
|
2031
|
-
([8cfa595](https://github.com/carbon-design-system/carbon-charts/commit/8cfa595))
|
|
2032
|
-
- **axis:** fix lint issue
|
|
2033
|
-
([debeed9](https://github.com/carbon-design-system/carbon-charts/commit/debeed9))
|
|
2034
|
-
- **axis:** fix linting errors
|
|
2035
|
-
([f810d4a](https://github.com/carbon-design-system/carbon-charts/commit/f810d4a))
|
|
2036
|
-
- **axis:** remove confusing timeRangeToExtend property
|
|
2037
|
-
([0456e24](https://github.com/carbon-design-system/carbon-charts/commit/0456e24))
|
|
2038
|
-
- **config:** add additional property to control extension
|
|
2039
|
-
([2da3404](https://github.com/carbon-design-system/carbon-charts/commit/2da3404))
|
|
2040
|
-
- **configuration:** fix default baseBarChart options
|
|
2041
|
-
([1a6dcef](https://github.com/carbon-design-system/carbon-charts/commit/1a6dcef))
|
|
2042
|
-
|
|
2043
|
-
# [0.26.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.25.0...v0.26.0) (2020-01-16)
|
|
2044
|
-
|
|
2045
|
-
### Features
|
|
2046
|
-
|
|
2047
|
-
- **core:** add event dispatches for mouseover, mousemove, click & mouseout
|
|
2048
|
-
for all graphs
|
|
2049
|
-
([284012c](https://github.com/carbon-design-system/carbon-charts/commit/284012c))
|
|
2050
|
-
|
|
2051
|
-
# [0.25.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.24.5...v0.25.0) (2020-01-10)
|
|
2052
|
-
|
|
2053
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2054
|
-
|
|
2055
|
-
## [0.24.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.24.4...v0.24.5) (2020-01-10)
|
|
2056
|
-
|
|
2057
|
-
### Bug Fixes
|
|
2058
|
-
|
|
2059
|
-
- **core:** fix to allow chart to toggle on and off using attribute/css
|
|
2060
|
-
properties
|
|
2061
|
-
([77e26af](https://github.com/carbon-design-system/carbon-charts/commit/77e26af))
|
|
2062
|
-
|
|
2063
|
-
## [0.24.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.24.3...v0.24.4) (2020-01-06)
|
|
2064
|
-
|
|
2065
|
-
### Bug Fixes
|
|
2066
|
-
|
|
2067
|
-
- **demos:** add IBM Plex Sans Condensed to the core demo site
|
|
2068
|
-
([1761a36](https://github.com/carbon-design-system/carbon-charts/commit/1761a36))
|
|
2069
|
-
|
|
2070
|
-
## [0.24.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.24.2...v0.24.3) (2019-12-19)
|
|
2071
|
-
|
|
2072
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2073
|
-
|
|
2074
|
-
## [0.24.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.24.1...v0.24.2) (2019-12-19)
|
|
2075
|
-
|
|
2076
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2077
|
-
|
|
2078
|
-
## [0.24.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.24.0...v0.24.1) (2019-12-18)
|
|
2079
|
-
|
|
2080
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2081
|
-
|
|
2082
|
-
# [0.24.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.23.0...v0.24.0) (2019-12-17)
|
|
2083
|
-
|
|
2084
|
-
### Features
|
|
2085
|
-
|
|
2086
|
-
- **core, react, angular, vue:** add WAI-ARIA tags to elements
|
|
2087
|
-
([1216ed6](https://github.com/carbon-design-system/carbon-charts/commit/1216ed6))
|
|
2088
|
-
|
|
2089
|
-
# [0.23.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.22.4...v0.23.0) (2019-12-17)
|
|
2090
|
-
|
|
2091
|
-
### Features
|
|
2092
|
-
|
|
2093
|
-
- **core:** add spacer components
|
|
2094
|
-
([4e5ab5c](https://github.com/carbon-design-system/carbon-charts/commit/4e5ab5c))
|
|
2095
|
-
|
|
2096
|
-
## [0.22.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.22.3...v0.22.4) (2019-12-16)
|
|
2097
|
-
|
|
2098
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2099
|
-
|
|
2100
|
-
## [0.22.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.22.2...v0.22.3) (2019-12-16)
|
|
2101
|
-
|
|
2102
|
-
### Bug Fixes
|
|
2103
|
-
|
|
2104
|
-
- **core:** update tooltip value formatter
|
|
2105
|
-
([2a978d8](https://github.com/carbon-design-system/carbon-charts/commit/2a978d8))
|
|
2106
|
-
|
|
2107
|
-
## [0.22.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.22.1...v0.22.2) (2019-12-16)
|
|
2108
|
-
|
|
2109
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2110
|
-
|
|
2111
|
-
## [0.22.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.22.0...v0.22.1) (2019-12-12)
|
|
2112
|
-
|
|
2113
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2114
|
-
|
|
2115
|
-
# [0.22.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.21.0...v0.22.0) (2019-12-09)
|
|
2116
|
-
|
|
2117
|
-
### Features
|
|
2118
|
-
|
|
2119
|
-
- **core, angular, react, vue:** Update chart width & height through options
|
|
2120
|
-
([f050c35](https://github.com/carbon-design-system/carbon-charts/commit/f050c35))
|
|
2121
|
-
|
|
2122
|
-
# [0.21.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.20.1...v0.21.0) (2019-12-09)
|
|
2123
|
-
|
|
2124
|
-
### Features
|
|
2125
|
-
|
|
2126
|
-
- **core, angular, react, vue:** allow customizations to pie labels & the
|
|
2127
|
-
donut center number
|
|
2128
|
-
([#427](https://github.com/carbon-design-system/carbon-charts/issues/427))
|
|
2129
|
-
([0446045](https://github.com/carbon-design-system/carbon-charts/commit/0446045))
|
|
2130
|
-
|
|
2131
|
-
## [0.20.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.20.0...v0.20.1) (2019-12-04)
|
|
2132
|
-
|
|
2133
|
-
### Bug Fixes
|
|
2134
|
-
|
|
2135
|
-
- **core:** loop also through non-display data to assign colors to datasets
|
|
2136
|
-
([#394](https://github.com/carbon-design-system/carbon-charts/issues/394))
|
|
2137
|
-
([5ba8952](https://github.com/carbon-design-system/carbon-charts/commit/5ba8952))
|
|
2138
|
-
|
|
2139
|
-
# [0.20.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.19.0...v0.20.0) (2019-12-02)
|
|
2140
|
-
|
|
2141
|
-
### Features
|
|
2142
|
-
|
|
2143
|
-
- **core:** add title truncation to tooltip
|
|
2144
|
-
([bdd677c](https://github.com/carbon-design-system/carbon-charts/commit/bdd677c))
|
|
2145
|
-
|
|
2146
|
-
# [0.19.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.18.0...v0.19.0) (2019-12-02)
|
|
2147
|
-
|
|
2148
|
-
### Features
|
|
2149
|
-
|
|
2150
|
-
- **core:** export interfaces and configurations
|
|
2151
|
-
([df7f557](https://github.com/carbon-design-system/carbon-charts/commit/df7f557))
|
|
2152
|
-
|
|
2153
|
-
# [0.18.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.17.1...v0.18.0) (2019-12-02)
|
|
2154
|
-
|
|
2155
|
-
### Bug Fixes
|
|
2156
|
-
|
|
2157
|
-
- **bar:** fix lint errors
|
|
2158
|
-
([0d04b04](https://github.com/carbon-design-system/carbon-charts/commit/0d04b04))
|
|
2159
|
-
- **tooltip:** rename defaultTooltip defaultHTML
|
|
2160
|
-
([cf8f34e](https://github.com/carbon-design-system/carbon-charts/commit/cf8f34e))
|
|
2161
|
-
|
|
2162
|
-
### Features
|
|
2163
|
-
|
|
2164
|
-
- **bar:** pass default tooltip to customHTML tooltip
|
|
2165
|
-
([b6f519b](https://github.com/carbon-design-system/carbon-charts/commit/b6f519b))
|
|
2166
|
-
- **tooltip:** for customHTML pass along the HTML tooltip
|
|
2167
|
-
([7d1a026](https://github.com/carbon-design-system/carbon-charts/commit/7d1a026))
|
|
2168
|
-
|
|
2169
|
-
## [0.17.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.17.0...v0.17.1) (2019-11-29)
|
|
2170
|
-
|
|
2171
|
-
### Bug Fixes
|
|
2172
|
-
|
|
2173
|
-
- **core:** build optimizations
|
|
2174
|
-
([fef77e5](https://github.com/carbon-design-system/carbon-charts/commit/fef77e5))
|
|
2175
|
-
|
|
2176
|
-
# [0.17.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.25...v0.17.0) (2019-11-29)
|
|
2177
|
-
|
|
2178
|
-
### Features
|
|
2179
|
-
|
|
2180
|
-
- **core:** date/time locale support + tick formatting
|
|
2181
|
-
([bc02012](https://github.com/carbon-design-system/carbon-charts/commit/bc02012))
|
|
2182
|
-
|
|
2183
|
-
## [0.16.25](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.24...v0.16.25) (2019-10-29)
|
|
2184
|
-
|
|
2185
|
-
### Bug Fixes
|
|
2186
|
-
|
|
2187
|
-
- **core:** update type to scaleType and backgroundColors to fillColors
|
|
2188
|
-
([3ca0a0f](https://github.com/carbon-design-system/carbon-charts/commit/3ca0a0f))
|
|
2189
|
-
|
|
2190
|
-
## [0.16.24](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.23...v0.16.24) (2019-10-25)
|
|
2191
|
-
|
|
2192
|
-
### Bug Fixes
|
|
2193
|
-
|
|
2194
|
-
- **core, react, angular, vue:** default width & height to 100%, and call
|
|
2195
|
-
setOptions on option change
|
|
2196
|
-
([db251b4](https://github.com/carbon-design-system/carbon-charts/commit/db251b4))
|
|
2197
|
-
|
|
2198
|
-
## [0.16.23](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.22...v0.16.23) (2019-10-25)
|
|
2199
|
-
|
|
2200
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2201
|
-
|
|
2202
|
-
## [0.16.22](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.21...v0.16.22) (2019-10-25)
|
|
2203
|
-
|
|
2204
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2205
|
-
|
|
2206
|
-
## [0.16.21](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.20...v0.16.21) (2019-10-24)
|
|
2207
|
-
|
|
2208
|
-
### Bug Fixes
|
|
2209
|
-
|
|
2210
|
-
- **core:** update typescript version
|
|
2211
|
-
([949379f](https://github.com/carbon-design-system/carbon-charts/commit/949379f))
|
|
2212
|
-
|
|
2213
|
-
## [0.16.20](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.19...v0.16.20) (2019-10-24)
|
|
2214
|
-
|
|
2215
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2216
|
-
|
|
2217
|
-
## [0.16.19](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.18...v0.16.19) (2019-10-24)
|
|
2218
|
-
|
|
2219
|
-
### Bug Fixes
|
|
2220
|
-
|
|
2221
|
-
- **tooltip:** fix to be multiline instead of multitooltip
|
|
2222
|
-
([0f90325](https://github.com/carbon-design-system/carbon-charts/commit/0f90325))
|
|
2223
|
-
|
|
2224
|
-
## [0.16.18](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.17...v0.16.18) (2019-10-21)
|
|
2225
|
-
|
|
2226
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2227
|
-
|
|
2228
|
-
## [0.16.17](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.16...v0.16.17) (2019-10-10)
|
|
2229
|
-
|
|
2230
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2231
|
-
|
|
2232
|
-
## [0.16.16](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.15...v0.16.16) (2019-10-10)
|
|
2233
|
-
|
|
2234
|
-
### Bug Fixes
|
|
2235
|
-
|
|
2236
|
-
- custom global object in UMD bundle generated by webpack
|
|
2237
|
-
([a4d1e54](https://github.com/carbon-design-system/carbon-charts/commit/a4d1e54))
|
|
2238
|
-
|
|
2239
|
-
## [0.16.15](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.14...v0.16.15) (2019-10-09)
|
|
2240
|
-
|
|
2241
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2242
|
-
|
|
2243
|
-
## [0.16.14](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.13...v0.16.14) (2019-10-09)
|
|
2244
|
-
|
|
2245
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2246
|
-
|
|
2247
|
-
## [0.16.13](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.12...v0.16.13) (2019-10-09)
|
|
2248
|
-
|
|
2249
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2250
|
-
|
|
2251
|
-
## [0.16.12](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.11...v0.16.12) (2019-10-09)
|
|
2252
|
-
|
|
2253
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2254
|
-
|
|
2255
|
-
## [0.16.11](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.10...v0.16.11) (2019-10-09)
|
|
2256
|
-
|
|
2257
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2258
|
-
|
|
2259
|
-
## [0.16.10](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.9...v0.16.10) (2019-10-08)
|
|
2260
|
-
|
|
2261
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2262
|
-
|
|
2263
|
-
## [0.16.9](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.8...v0.16.9) (2019-10-07)
|
|
2264
|
-
|
|
2265
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2266
|
-
|
|
2267
|
-
## [0.16.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.7...v0.16.8) (2019-10-02)
|
|
2268
|
-
|
|
2269
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2270
|
-
|
|
2271
|
-
## [0.16.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.6...v0.16.7) (2019-09-30)
|
|
2272
|
-
|
|
2273
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2274
|
-
|
|
2275
|
-
## [0.16.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.5...v0.16.6) (2019-09-30)
|
|
2276
|
-
|
|
2277
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2278
|
-
|
|
2279
|
-
## [0.16.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.4...v0.16.5) (2019-09-30)
|
|
2280
|
-
|
|
2281
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2282
|
-
|
|
2283
|
-
## [0.16.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.3...v0.16.4) (2019-09-12)
|
|
2284
|
-
|
|
2285
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2286
|
-
|
|
2287
|
-
## [0.16.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.2...v0.16.3) (2019-09-11)
|
|
2288
|
-
|
|
2289
|
-
### Bug Fixes
|
|
2290
|
-
|
|
2291
|
-
- **angular:** Fix angular SSR issues
|
|
2292
|
-
([86aa9d3](https://github.com/carbon-design-system/carbon-charts/commit/86aa9d3))
|
|
2293
|
-
|
|
2294
|
-
## [0.16.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.1...v0.16.2) (2019-09-09)
|
|
2295
|
-
|
|
2296
|
-
### Bug Fixes
|
|
2297
|
-
|
|
2298
|
-
- **core, react:** fix react SSR & legend sizing issues
|
|
2299
|
-
([abedba0](https://github.com/carbon-design-system/carbon-charts/commit/abedba0))
|
|
2300
|
-
|
|
2301
|
-
## [0.16.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.0...v0.16.1) (2019-09-06)
|
|
2302
|
-
|
|
2303
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2304
|
-
|
|
2305
|
-
# [0.16.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.15.8...v0.16.0) (2019-09-06)
|
|
2306
|
-
|
|
2307
|
-
### Features
|
|
2308
|
-
|
|
2309
|
-
- **core:** Expand slice arcs in pie and donut on hover, and remove strokes
|
|
2310
|
-
([ca5a467](https://github.com/carbon-design-system/carbon-charts/commit/ca5a467))
|
|
2311
|
-
- **core:** support width & maxWidth values for bars
|
|
2312
|
-
([a2e7120](https://github.com/carbon-design-system/carbon-charts/commit/a2e7120))
|
|
2313
|
-
|
|
2314
|
-
## [0.15.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.15.7...v0.15.8) (2019-08-24)
|
|
2315
|
-
|
|
2316
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2317
|
-
|
|
2318
|
-
## [0.15.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.15.6...v0.15.7) (2019-08-22)
|
|
2319
|
-
|
|
2320
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2321
|
-
|
|
2322
|
-
## [0.15.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.15.5...v0.15.6) (2019-08-19)
|
|
2323
|
-
|
|
2324
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2325
|
-
|
|
2326
|
-
## [0.15.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.15.4...v0.15.5) (2019-08-19)
|
|
2327
|
-
|
|
2328
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2329
|
-
|
|
2330
|
-
## [0.15.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.15.3...v0.15.4) (2019-08-16)
|
|
2331
|
-
|
|
2332
|
-
### Bug Fixes
|
|
2333
|
-
|
|
2334
|
-
- **core:** fix resize grid backdrop
|
|
2335
|
-
([8e1211e](https://github.com/carbon-design-system/carbon-charts/commit/8e1211e))
|
|
2336
|
-
|
|
2337
|
-
## [0.15.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.15.2...v0.15.3) (2019-08-16)
|
|
2338
|
-
|
|
2339
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2340
|
-
|
|
2341
|
-
## [0.15.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.15.1...v0.15.2) (2019-08-12)
|
|
2342
|
-
|
|
2343
|
-
### Bug Fixes
|
|
2344
|
-
|
|
2345
|
-
- **core:** fix for better backdrop resizing on axis grids
|
|
2346
|
-
([6a12a60](https://github.com/carbon-design-system/carbon-charts/commit/6a12a60))
|
|
2347
|
-
|
|
2348
|
-
## [0.15.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.15.0...v0.15.1) (2019-07-17)
|
|
2349
|
-
|
|
2350
|
-
### Bug Fixes
|
|
2351
|
-
|
|
2352
|
-
- **core:** backdrop resize with chart
|
|
2353
|
-
([bbc288d](https://github.com/carbon-design-system/carbon-charts/commit/bbc288d))
|
|
2354
|
-
|
|
2355
|
-
# [0.15.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.14.1...v0.15.0) (2019-07-17)
|
|
2356
|
-
|
|
2357
|
-
### Features
|
|
2358
|
-
|
|
2359
|
-
- **core:** adding carbon themes
|
|
2360
|
-
([a31fbcf](https://github.com/carbon-design-system/carbon-charts/commit/a31fbcf))
|
|
2361
|
-
|
|
2362
|
-
## [0.14.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.14.0...v0.14.1) (2019-07-11)
|
|
2363
|
-
|
|
2364
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2365
|
-
|
|
2366
|
-
# [0.14.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.13.0...v0.14.0) (2019-07-10)
|
|
2367
|
-
|
|
2368
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2369
|
-
|
|
2370
|
-
# [0.13.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.12.5...v0.13.0) (2019-07-08)
|
|
2371
|
-
|
|
2372
|
-
### Features
|
|
2373
|
-
|
|
2374
|
-
- **core:** addition of titles within svg chart
|
|
2375
|
-
([56380bb](https://github.com/carbon-design-system/carbon-charts/commit/56380bb))
|
|
2376
|
-
|
|
2377
|
-
## [0.12.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.12.4...v0.12.5) (2019-07-04)
|
|
2378
|
-
|
|
2379
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2380
|
-
|
|
2381
|
-
## [0.12.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.12.3...v0.12.4) (2019-06-26)
|
|
2382
|
-
|
|
2383
|
-
### Bug Fixes
|
|
2384
|
-
|
|
2385
|
-
- **react core:** change main bundle to umd in core, and update imports in
|
|
2386
|
-
react
|
|
2387
|
-
([df9c7c3](https://github.com/carbon-design-system/carbon-charts/commit/df9c7c3))
|
|
2388
|
-
|
|
2389
|
-
## [0.12.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.12.2...v0.12.3) (2019-06-26)
|
|
2390
|
-
|
|
2391
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2392
|
-
|
|
2393
|
-
## [0.12.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.12.1...v0.12.2) (2019-06-07)
|
|
2394
|
-
|
|
2395
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2396
|
-
|
|
2397
|
-
## [0.12.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.12.0...v0.12.1) (2019-06-06)
|
|
2398
|
-
|
|
2399
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2400
|
-
|
|
2401
|
-
# [0.12.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.15...v0.12.0) (2019-05-09)
|
|
2402
|
-
|
|
2403
|
-
### Features
|
|
2404
|
-
|
|
2405
|
-
- **core:** Colors, themes & more design updates
|
|
2406
|
-
([#261](https://github.com/carbon-design-system/carbon-charts/issues/261))
|
|
2407
|
-
([b0b9070](https://github.com/carbon-design-system/carbon-charts/commit/b0b9070))
|
|
2408
|
-
- **feat(core:** Color palettes):
|
|
2409
|
-
([edcf601](https://github.com/carbon-design-system/carbon-charts/commit/edcf601))
|
|
2410
|
-
|
|
2411
|
-
## [0.11.15](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.14...v0.11.15) (2019-05-07)
|
|
2412
|
-
|
|
2413
|
-
### Bug Fixes
|
|
2414
|
-
|
|
2415
|
-
- **core:** Fix tooltip positioning
|
|
2416
|
-
([dd17048](https://github.com/carbon-design-system/carbon-charts/commit/dd17048))
|
|
2417
|
-
|
|
2418
|
-
## [0.11.14](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.12...v0.11.14) (2019-05-06)
|
|
2419
|
-
|
|
2420
|
-
### Bug Fixes
|
|
2421
|
-
|
|
2422
|
-
- **core:** Show empty state for when there is no data
|
|
2423
|
-
([b5db127](https://github.com/carbon-design-system/carbon-charts/commit/b5db127))
|
|
2424
|
-
|
|
2425
|
-
## [0.11.13](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.12...v0.11.13) (2019-04-30)
|
|
2426
|
-
|
|
2427
|
-
### Bug Fixes
|
|
2428
|
-
|
|
2429
|
-
- **core:** Show empty state for when there is no data
|
|
2430
|
-
([b5db127](https://github.com/carbon-design-system/carbon-charts/commit/b5db127))
|
|
2431
|
-
|
|
2432
|
-
## [0.11.12](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.11...v0.11.12) (2019-04-22)
|
|
2433
|
-
|
|
2434
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2435
|
-
|
|
2436
|
-
## [0.11.11](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.10...v0.11.11) (2019-04-15)
|
|
2437
|
-
|
|
2438
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2439
|
-
|
|
2440
|
-
## [0.11.10](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.9...v0.11.10) (2019-04-02)
|
|
2441
|
-
|
|
2442
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2443
|
-
|
|
2444
|
-
## [0.11.9](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.8...v0.11.9) (2019-03-28)
|
|
2445
|
-
|
|
2446
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2447
|
-
|
|
2448
|
-
## [0.11.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.7...v0.11.8) (2019-03-26)
|
|
2449
|
-
|
|
2450
|
-
### Bug Fixes
|
|
2451
|
-
|
|
2452
|
-
- **core:** add babel-polyfill as a hard dependency
|
|
2453
|
-
([#230](https://github.com/carbon-design-system/carbon-charts/issues/230))
|
|
2454
|
-
([d3e8c0c](https://github.com/carbon-design-system/carbon-charts/commit/d3e8c0c))
|
|
2455
|
-
|
|
2456
|
-
## [0.11.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.6...v0.11.7) (2019-03-26)
|
|
2457
|
-
|
|
2458
|
-
### Bug Fixes
|
|
2459
|
-
|
|
2460
|
-
- **core:** remove suffixes to use regular module resolution, and force
|
|
2461
|
-
publish all packages with every release
|
|
2462
|
-
([#229](https://github.com/carbon-design-system/carbon-charts/issues/229))
|
|
2463
|
-
([2e33ca6](https://github.com/carbon-design-system/carbon-charts/commit/2e33ca6))
|
|
2464
|
-
|
|
2465
|
-
## [0.11.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.5...v0.11.6) (2019-03-26)
|
|
2466
|
-
|
|
2467
|
-
### Bug Fixes
|
|
2468
|
-
|
|
2469
|
-
- **core:** export patterns as strings of svgs
|
|
2470
|
-
([#227](https://github.com/carbon-design-system/carbon-charts/issues/227))
|
|
2471
|
-
([14391ae](https://github.com/carbon-design-system/carbon-charts/commit/14391ae))
|
|
2472
|
-
|
|
2473
|
-
## [0.11.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.4...v0.11.5) (2019-03-26)
|
|
2474
|
-
|
|
2475
|
-
### Bug Fixes
|
|
2476
|
-
|
|
2477
|
-
- **build:** refactor deploy and update package.jsons
|
|
2478
|
-
([#223](https://github.com/carbon-design-system/carbon-charts/issues/223))
|
|
2479
|
-
([fb512cb](https://github.com/carbon-design-system/carbon-charts/commit/fb512cb))
|
|
2480
|
-
|
|
2481
|
-
## [0.11.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.3...v0.11.4) (2019-03-25)
|
|
2482
|
-
|
|
2483
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2484
|
-
|
|
2485
|
-
# [0.11.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.10.5...v0.11.0) (2019-03-12)
|
|
2486
|
-
|
|
2487
|
-
### Features
|
|
2488
|
-
|
|
2489
|
-
- **core:** specify config as interfaces
|
|
2490
|
-
([e474fb6](https://github.com/carbon-design-system/carbon-charts/commit/e474fb6))
|
|
2491
|
-
|
|
2492
|
-
## [0.10.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.10.4...v0.10.5) (2019-03-12)
|
|
2493
|
-
|
|
2494
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2495
|
-
|
|
2496
|
-
## [0.10.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.10.3...v0.10.4) (2019-03-08)
|
|
2497
|
-
|
|
2498
|
-
### Bug Fixes
|
|
2499
|
-
|
|
2500
|
-
- **core:** remove updateSVG()
|
|
2501
|
-
([38f7e83](https://github.com/carbon-design-system/carbon-charts/commit/38f7e83)),
|
|
2502
|
-
closes
|
|
2503
|
-
[#185](https://github.com/carbon-design-system/carbon-charts/issues/185)
|
|
2504
|
-
|
|
2505
|
-
## [0.10.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.10.1...v0.10.2) (2019-03-06)
|
|
2506
|
-
|
|
2507
|
-
### Bug Fixes
|
|
2508
|
-
|
|
2509
|
-
- **core:** Enforce text alignment of legend popup in the styles
|
|
2510
|
-
([#203](https://github.com/carbon-design-system/carbon-charts/issues/203))
|
|
2511
|
-
([6a4fe1e](https://github.com/carbon-design-system/carbon-charts/commit/6a4fe1e))
|
|
2512
|
-
- **core:** Fix loss of letters in labels in wrapTicks()
|
|
2513
|
-
([#202](https://github.com/carbon-design-system/carbon-charts/issues/202))
|
|
2514
|
-
([8635e7b](https://github.com/carbon-design-system/carbon-charts/commit/8635e7b))
|
|
2515
|
-
|
|
2516
|
-
## [0.10.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.10.0...v0.10.1) (2019-02-28)
|
|
2517
|
-
|
|
2518
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2519
|
-
|
|
2520
|
-
# [0.10.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.7...v0.10.0) (2019-02-28)
|
|
2521
|
-
|
|
2522
|
-
### Features
|
|
2523
|
-
|
|
2524
|
-
- **\$core:** Adds getStrokeColor and getFillColor options
|
|
2525
|
-
([e1766d3](https://github.com/carbon-design-system/carbon-charts/commit/e1766d3)),
|
|
2526
|
-
closes
|
|
2527
|
-
[#136](https://github.com/carbon-design-system/carbon-charts/issues/136)
|
|
2528
|
-
|
|
2529
|
-
## [0.9.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.6...v0.9.7) (2019-02-22)
|
|
2530
|
-
|
|
2531
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2532
|
-
|
|
2533
|
-
## [0.9.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.4...v0.9.6) (2019-02-21)
|
|
2534
|
-
|
|
2535
|
-
### Bug Fixes
|
|
2536
|
-
|
|
2537
|
-
- **bar:** add maxWidth and other bar fixes
|
|
2538
|
-
([3866d86](https://github.com/carbon-design-system/carbon-charts/commit/3866d86))
|
|
2539
|
-
|
|
2540
|
-
## [0.9.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.4...v0.9.5) (2019-02-20)
|
|
2541
|
-
|
|
2542
|
-
### Bug Fixes
|
|
2543
|
-
|
|
2544
|
-
- **\$core:** Fixes opacity transitions not completing when data is updated.
|
|
2545
|
-
Ensures use SVG vs CSS op
|
|
2546
|
-
([f6b245e](https://github.com/carbon-design-system/carbon-charts/commit/f6b245e))
|
|
2547
|
-
|
|
2548
|
-
## [0.9.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.3...v0.9.4) (2019-02-16)
|
|
2549
|
-
|
|
2550
|
-
### Bug Fixes
|
|
2551
|
-
|
|
2552
|
-
- **\$browser:** Fix duplication of titles during title resize
|
|
2553
|
-
([4698efd](https://github.com/carbon-design-system/carbon-charts/commit/4698efd))
|
|
2554
|
-
|
|
2555
|
-
## [0.9.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.2...v0.9.3) (2019-02-15)
|
|
2556
|
-
|
|
2557
|
-
### Bug Fixes
|
|
2558
|
-
|
|
2559
|
-
- **core:** Fix NPM vulnerabilities
|
|
2560
|
-
([73ef611](https://github.com/carbon-design-system/carbon-charts/commit/73ef611))
|
|
2561
|
-
|
|
2562
|
-
## [0.9.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.1...v0.9.2) (2019-02-15)
|
|
2563
|
-
|
|
2564
|
-
### Bug Fixes
|
|
2565
|
-
|
|
2566
|
-
- **core:** Allow custom circle size for line chart
|
|
2567
|
-
([5fb93bd](https://github.com/carbon-design-system/carbon-charts/commit/5fb93bd))
|
|
2568
|
-
|
|
2569
|
-
## [0.9.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.0...v0.9.1) (2019-02-07)
|
|
2570
|
-
|
|
2571
|
-
### Bug Fixes
|
|
2572
|
-
|
|
2573
|
-
- **core:** Allow the usage of different size variants of tooltip
|
|
2574
|
-
([4f6aa1d](https://github.com/carbon-design-system/carbon-charts/commit/4f6aa1d))
|
|
2575
|
-
|
|
2576
|
-
# [0.9.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.6...v0.9.0) (2019-01-28)
|
|
2577
|
-
|
|
2578
|
-
### Features
|
|
2579
|
-
|
|
2580
|
-
- **CORE:** ability to customize donut label & number
|
|
2581
|
-
([07014cf](https://github.com/carbon-design-system/carbon-charts/commit/07014cf))
|
|
2582
|
-
|
|
2583
|
-
## [0.8.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.5...v0.8.6) (2019-01-18)
|
|
2584
|
-
|
|
2585
|
-
### Bug Fixes
|
|
2586
|
-
|
|
2587
|
-
- **\$browser:** Fixes the issue with pie labels not lining up on smaller
|
|
2588
|
-
sizes.
|
|
2589
|
-
([154467f](https://github.com/carbon-design-system/carbon-charts/commit/154467f)),
|
|
2590
|
-
closes
|
|
2591
|
-
[#151](https://github.com/carbon-design-system/carbon-charts/issues/151)
|
|
2592
|
-
- **\$browser:** Use dynamic step value for margin instead of fixed value.
|
|
2593
|
-
([1c96d7a](https://github.com/carbon-design-system/carbon-charts/commit/1c96d7a))
|
|
2594
|
-
- **core:** Fix interference of thresholds and bar chart elements
|
|
2595
|
-
([a69dc15](https://github.com/carbon-design-system/carbon-charts/commit/a69dc15))
|
|
2596
|
-
|
|
2597
|
-
## [0.8.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.4...v0.8.5) (2019-01-17)
|
|
2598
|
-
|
|
2599
|
-
### Bug Fixes
|
|
2600
|
-
|
|
2601
|
-
- **\$browser:** Fixes the issue with pie labels not lining up on smaller
|
|
2602
|
-
sizes.
|
|
2603
|
-
([54e2227](https://github.com/carbon-design-system/carbon-charts/commit/54e2227)),
|
|
2604
|
-
closes
|
|
2605
|
-
[#151](https://github.com/carbon-design-system/carbon-charts/issues/151)
|
|
2606
|
-
|
|
2607
|
-
## [0.8.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.3...v0.8.4) (2019-01-17)
|
|
2608
|
-
|
|
2609
|
-
### Bug Fixes
|
|
2610
|
-
|
|
2611
|
-
- **core:** Fix interference of thresholds and bar chart elements
|
|
2612
|
-
([67ff065](https://github.com/carbon-design-system/carbon-charts/commit/67ff065))
|
|
2613
|
-
|
|
2614
|
-
## [0.8.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.2...v0.8.3) (2019-01-16)
|
|
2615
|
-
|
|
2616
|
-
### Bug Fixes
|
|
2617
|
-
|
|
2618
|
-
- **core:** Fix tooltip positioning and clean up styling
|
|
2619
|
-
([6de0665](https://github.com/carbon-design-system/carbon-charts/commit/6de0665))
|
|
2620
|
-
|
|
2621
|
-
## [0.8.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.1...v0.8.2) (2019-01-14)
|
|
2622
|
-
|
|
2623
|
-
### Bug Fixes
|
|
2624
|
-
|
|
2625
|
-
- **core demo:** Fix experimental link issue
|
|
2626
|
-
([d9d660a](https://github.com/carbon-design-system/carbon-charts/commit/d9d660a))
|
|
2627
|
-
|
|
2628
|
-
## [0.8.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.0...v0.8.1) (2019-01-09)
|
|
2629
|
-
|
|
2630
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2631
|
-
|
|
2632
|
-
# [0.8.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.16...v0.8.0) (2019-01-04)
|
|
2633
|
-
|
|
2634
|
-
### Features
|
|
2635
|
-
|
|
2636
|
-
- **\$core:** adds support for tension, beta, alpha in curves
|
|
2637
|
-
([09437dc](https://github.com/carbon-design-system/carbon-charts/commit/09437dc)),
|
|
2638
|
-
closes
|
|
2639
|
-
[#39](https://github.com/carbon-design-system/carbon-charts/issues/39)
|
|
2640
|
-
|
|
2641
|
-
## [0.7.16](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.15...v0.7.16) (2019-01-03)
|
|
2642
|
-
|
|
2643
|
-
### Bug Fixes
|
|
2644
|
-
|
|
2645
|
-
- **core:** Remove extension of addLegend in PieChart
|
|
2646
|
-
([c66b633](https://github.com/carbon-design-system/carbon-charts/commit/c66b633))
|
|
2647
|
-
|
|
2648
|
-
## [0.7.14](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.13...v0.7.14) (2019-01-03)
|
|
2649
|
-
|
|
2650
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2651
|
-
|
|
2652
|
-
## [0.7.11](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.10...v0.7.11) (2018-12-03)
|
|
2653
|
-
|
|
2654
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2655
|
-
|
|
2656
|
-
## [0.7.10](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.9...v0.7.10) (2018-11-28)
|
|
2657
|
-
|
|
2658
|
-
### Bug Fixes
|
|
2659
|
-
|
|
2660
|
-
- **react:** Fix react wrappers resizing with animation
|
|
2661
|
-
([4219f33](https://github.com/carbon-design-system/carbon-charts/commit/4219f33))
|
|
2662
|
-
|
|
2663
|
-
## [0.7.9](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.8...v0.7.9) (2018-11-22)
|
|
2664
|
-
|
|
2665
|
-
### Bug Fixes
|
|
2666
|
-
|
|
2667
|
-
- **core:** Use a minimum size for all charts, and use resizeObserver rather
|
|
2668
|
-
than requestAnimationFra
|
|
2669
|
-
([462c2d6](https://github.com/carbon-design-system/carbon-charts/commit/462c2d6))
|
|
2670
|
-
|
|
2671
|
-
## [0.7.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.7...v0.7.8) (2018-11-22)
|
|
2672
|
-
|
|
2673
|
-
### Bug Fixes
|
|
2674
|
-
|
|
2675
|
-
- **core:** Remove and update addDataPointEventListener
|
|
2676
|
-
([f40f775](https://github.com/carbon-design-system/carbon-charts/commit/f40f775)),
|
|
2677
|
-
closes
|
|
2678
|
-
[#97](https://github.com/carbon-design-system/carbon-charts/issues/97)
|
|
2679
|
-
|
|
2680
|
-
## [0.7.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.4...v0.7.5) (2018-11-20)
|
|
2681
|
-
|
|
2682
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2683
|
-
|
|
2684
|
-
## [0.7.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.3...v0.7.4) (2018-11-17)
|
|
2685
|
-
|
|
2686
|
-
### Bug Fixes
|
|
2687
|
-
|
|
2688
|
-
- **packages/core/src/line-chart.ts:** Fix tooltips bug
|
|
2689
|
-
[#89](https://github.com/carbon-design-system/carbon-charts/issues/89): Fix
|
|
2690
|
-
imports and addDataPointEventListene
|
|
2691
|
-
([5a63f94](https://github.com/carbon-design-system/carbon-charts/commit/5a63f94))
|
|
2692
|
-
|
|
2693
|
-
## [0.7.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.2...v0.7.3) (2018-11-13)
|
|
2694
|
-
|
|
2695
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2696
|
-
|
|
2697
|
-
## [0.7.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.1...v0.7.2) (2018-11-13)
|
|
2698
|
-
|
|
2699
|
-
### Bug Fixes
|
|
2700
|
-
|
|
2701
|
-
- **core:** Fixed label colours on donut charts
|
|
2702
|
-
([5e40ef6](https://github.com/carbon-design-system/carbon-charts/commit/5e40ef6))
|
|
2703
|
-
|
|
2704
|
-
## [0.7.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.0...v0.7.1) (2018-11-12)
|
|
2705
|
-
|
|
2706
|
-
### Bug Fixes
|
|
2707
|
-
|
|
2708
|
-
- **core:** Refactor thresholds to support a range of values, closes
|
|
2709
|
-
[#85](https://github.com/carbon-design-system/carbon-charts/issues/85)
|
|
2710
|
-
([50b44c0](https://github.com/carbon-design-system/carbon-charts/commit/50b44c0))
|
|
2711
|
-
|
|
2712
|
-
# [0.7.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.6.2...v0.7.0) (2018-11-12)
|
|
2713
|
-
|
|
2714
|
-
### Features
|
|
2715
|
-
|
|
2716
|
-
- **core:** Automatic calculation of DonutCenter value, closes
|
|
2717
|
-
[#83](https://github.com/carbon-design-system/carbon-charts/issues/83)
|
|
2718
|
-
([d20e883](https://github.com/carbon-design-system/carbon-charts/commit/d20e883))
|
|
2719
|
-
|
|
2720
|
-
## [0.6.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.6.1...v0.6.2) (2018-11-12)
|
|
2721
|
-
|
|
2722
|
-
### Bug Fixes
|
|
2723
|
-
|
|
2724
|
-
- **\$core:** Remove hover effect and pointer on non-clickable legends
|
|
2725
|
-
([dc9a2f2](https://github.com/carbon-design-system/carbon-charts/commit/dc9a2f2)),
|
|
2726
|
-
closes
|
|
2727
|
-
[#71](https://github.com/carbon-design-system/carbon-charts/issues/71)
|
|
2728
|
-
|
|
2729
|
-
## [0.6.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.6.0...v0.6.1) (2018-11-09)
|
|
2730
|
-
|
|
2731
|
-
### Bug Fixes
|
|
2732
|
-
|
|
2733
|
-
- **angular:** Fix babel-polyfill multiple instances issue
|
|
2734
|
-
([4a2f165](https://github.com/carbon-design-system/carbon-charts/commit/4a2f165))
|
|
2735
|
-
|
|
2736
|
-
# [0.6.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.5.4...v0.6.0) (2018-11-01)
|
|
2737
|
-
|
|
2738
|
-
### Bug Fixes
|
|
2739
|
-
|
|
2740
|
-
- **core:** Resize thresholds, and update threshold theme colors
|
|
2741
|
-
([3d86841](https://github.com/carbon-design-system/carbon-charts/commit/3d86841))
|
|
2742
|
-
|
|
2743
|
-
### Features
|
|
2744
|
-
|
|
2745
|
-
- **core:** changed threshold config format, code refactor
|
|
2746
|
-
([d931a82](https://github.com/carbon-design-system/carbon-charts/commit/d931a82))
|
|
2747
|
-
|
|
2748
|
-
<a name="0.5.4"></a>
|
|
2749
|
-
|
|
2750
|
-
## [0.5.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.5.3...v0.5.4) (2018-10-16)
|
|
2751
|
-
|
|
2752
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2753
|
-
|
|
2754
|
-
<a name="0.5.3"></a>
|
|
2755
|
-
|
|
2756
|
-
## [0.5.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.5.2...v0.5.3) (2018-10-15)
|
|
2757
|
-
|
|
2758
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2759
|
-
|
|
2760
|
-
<a name="0.5.2"></a>
|
|
2761
|
-
|
|
2762
|
-
## [0.5.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.5.1...v0.5.2) (2018-10-10)
|
|
2763
|
-
|
|
2764
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2765
|
-
|
|
2766
|
-
<a name="0.5.1"></a>
|
|
2767
|
-
|
|
2768
|
-
## [0.5.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.5.0...v0.5.1) (2018-10-10)
|
|
2769
|
-
|
|
2770
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2771
|
-
|
|
2772
|
-
<a name="0.5.0"></a>
|
|
2773
|
-
|
|
2774
|
-
# [0.5.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.4.3...v0.5.0) (2018-10-09)
|
|
2775
|
-
|
|
2776
|
-
### Bug Fixes
|
|
2777
|
-
|
|
2778
|
-
- **core:** legend updates in pie & donut should respect legend filters
|
|
2779
|
-
([203c7e6](https://github.com/carbon-design-system/carbon-charts/commit/203c7e6))
|
|
2780
|
-
- **core:** use correct default colors, and replace loading bee with carbon
|
|
2781
|
-
loading spinner
|
|
2782
|
-
([80ff9bd](https://github.com/carbon-design-system/carbon-charts/commit/80ff9bd))
|
|
2783
|
-
|
|
2784
|
-
### Features
|
|
2785
|
-
|
|
2786
|
-
- **core:** first attempt at combo-chart
|
|
2787
|
-
([6613160](https://github.com/carbon-design-system/carbon-charts/commit/6613160))
|
|
2788
|
-
|
|
2789
|
-
<a name="0.4.3"></a>
|
|
2790
|
-
|
|
2791
|
-
## [0.4.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.4.2...v0.4.3) (2018-08-31)
|
|
2792
|
-
|
|
2793
|
-
**Note:** Version bump only for package @carbon/charts
|
|
2794
|
-
|
|
2795
|
-
<a name="0.4.2"></a>
|
|
2796
|
-
|
|
2797
|
-
## [0.4.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.4.1...v0.4.2) (2018-08-31)
|
|
2798
|
-
|
|
2799
|
-
### Bug Fixes
|
|
2800
|
-
|
|
2801
|
-
- **core angular:** IE11 Support
|
|
2802
|
-
([b0dd2b5](https://github.com/carbon-design-system/carbon-charts/commit/b0dd2b5))
|
|
2803
|
-
|
|
2804
|
-
<a name="0.4.1"></a>
|
|
2805
|
-
|
|
2806
|
-
## [0.4.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.4.0...v0.4.1) (2018-08-31)
|
|
2807
|
-
|
|
2808
|
-
### Bug Fixes
|
|
2809
|
-
|
|
2810
|
-
- **core angular:** Remove demo folders from published packages
|
|
2811
|
-
([5e3c556](https://github.com/carbon-design-system/carbon-charts/commit/5e3c556))
|
|
2812
|
-
- **core angular:** Remove demos & add dist in packages
|
|
2813
|
-
([94bb9f4](https://github.com/carbon-design-system/carbon-charts/commit/94bb9f4))
|
|
2814
|
-
|
|
2815
|
-
<a name="0.4.0"></a>
|
|
2816
|
-
|
|
2817
|
-
# [0.4.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.3.0...v0.4.0) (2018-08-30)
|
|
2818
|
-
|
|
2819
|
-
### Features
|
|
2820
|
-
|
|
2821
|
-
- **core angular react:** Resolve DAP violations
|
|
2822
|
-
([86f6e05](https://github.com/carbon-design-system/carbon-charts/commit/86f6e05))
|
|
2823
|
-
|
|
2824
|
-
<a name="0.3.0"></a>
|
|
2825
|
-
|
|
2826
|
-
# [0.3.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.2.0...v0.3.0) (2018-08-30)
|
|
2827
|
-
|
|
2828
|
-
### Features
|
|
2829
|
-
|
|
2830
|
-
- **core angular:** trigger minor release on Travis
|
|
2831
|
-
([1c476b2](https://github.com/carbon-design-system/carbon-charts/commit/1c476b2))
|
|
2832
|
-
|
|
2833
|
-
<a name="0.2.0"></a>
|
|
2834
|
-
|
|
2835
|
-
# [0.2.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.1.0...v0.2.0) (2018-08-30)
|
|
2836
|
-
|
|
2837
|
-
### Features
|
|
2838
|
-
|
|
2839
|
-
- **core angular react:** trigger a minor release in Travis
|
|
2840
|
-
([2995cfa](https://github.com/carbon-design-system/carbon-charts/commit/2995cfa))
|
|
2841
|
-
|
|
2842
|
-
<a name="0.1.0"></a>
|
|
2843
|
-
|
|
2844
|
-
# 0.1.0 (2018-08-30)
|
|
2845
|
-
|
|
2846
|
-
### Bug Fixes
|
|
2847
|
-
|
|
2848
|
-
- **core angular react:** fix tooltip styling
|
|
2849
|
-
([80b36f5](https://github.com/carbon-design-system/carbon-charts/commit/80b36f5))
|
|
2850
|
-
- **peretz-icons:** show peretz-icons instead of raw SVG for tooltip close
|
|
2851
|
-
button
|
|
2852
|
-
([19a54d4](https://github.com/carbon-design-system/carbon-charts/commit/19a54d4))
|
|
2853
|
-
- **scope angular react:** use a more specific class name for chart tooltips
|
|
2854
|
-
([4cbe680](https://github.com/carbon-design-system/carbon-charts/commit/4cbe680))
|
|
2855
|
-
|
|
2856
|
-
### Features
|
|
2857
|
-
|
|
2858
|
-
- **core angular react:** support negative y-values
|
|
2859
|
-
([cfa941d](https://github.com/carbon-design-system/carbon-charts/commit/cfa941d))
|
|
2860
|
-
- **core react angular:** carbon styling
|
|
2861
|
-
([5064f63](https://github.com/carbon-design-system/carbon-charts/commit/5064f63))
|
|
2862
|
-
- **react wrappers storybook:** full react wrappers
|
|
2863
|
-
([4a456ee](https://github.com/carbon-design-system/carbon-charts/commit/4a456ee)),
|
|
2864
|
-
closes
|
|
2865
|
-
[#117](https://github.com/carbon-design-system/carbon-charts/issues/117)
|
|
2866
|
-
[#115](https://github.com/carbon-design-system/carbon-charts/issues/115)
|
|
2867
|
-
[#120](https://github.com/carbon-design-system/carbon-charts/issues/120)
|
|
2868
|
-
[#121](https://github.com/carbon-design-system/carbon-charts/issues/121)
|
|
2869
|
-
|
|
2870
|
-
# Change Log
|
|
2871
|
-
|
|
2872
|
-
All notable changes to this project will be documented in this file.
|