@carbon/charts 1.8.0 → 1.9.0-next.0
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 +84 -155
- package/README.md +18 -20
- package/dist/_baseEach-603421de.mjs +21 -0
- package/dist/_baseEach-603421de.mjs.map +1 -0
- package/dist/_baseEach-cdac417f.js +2 -0
- package/dist/_baseEach-cdac417f.js.map +1 -0
- package/dist/a11y-7bad4f48.mjs +5 -0
- package/dist/a11y-7bad4f48.mjs.map +1 -0
- package/dist/a11y-c7c9d087.js +2 -0
- package/dist/a11y-c7c9d087.js.map +1 -0
- package/dist/angle-utils-6f166b40.js +2 -0
- package/dist/angle-utils-6f166b40.js.map +1 -0
- package/dist/angle-utils-8b6ce998.mjs +387 -0
- package/dist/angle-utils-8b6ce998.mjs.map +1 -0
- package/dist/axis-chart.d.ts +13 -0
- package/dist/chart.d.ts +18 -0
- package/dist/charts/alluvial.d.ts +10 -0
- package/dist/charts/area-stacked.d.ts +8 -0
- package/dist/charts/area.d.ts +8 -0
- package/dist/charts/bar-grouped.d.ts +8 -0
- package/dist/charts/bar-simple.d.ts +8 -0
- package/dist/charts/bar-stacked.d.ts +8 -0
- package/dist/charts/boxplot.d.ts +10 -0
- package/dist/charts/bubble.d.ts +8 -0
- package/dist/charts/bullet.d.ts +10 -0
- package/dist/charts/choropleth.d.ts +14 -0
- package/dist/charts/circle-pack.d.ts +10 -0
- package/dist/charts/combo.d.ts +9 -0
- package/dist/charts/donut.d.ts +8 -0
- package/dist/charts/gauge.d.ts +10 -0
- package/dist/charts/heatmap.d.ts +14 -0
- package/dist/charts/histogram.d.ts +10 -0
- package/dist/charts/index.d.ts +27 -0
- package/dist/charts/line.d.ts +8 -0
- package/dist/charts/lollipop.d.ts +8 -0
- package/dist/charts/meter.d.ts +10 -0
- package/dist/charts/pie.d.ts +10 -0
- package/dist/charts/radar.d.ts +10 -0
- package/dist/charts/scatter.d.ts +8 -0
- package/dist/charts/tree.d.ts +10 -0
- package/dist/charts/treemap.d.ts +10 -0
- package/dist/charts/wordcloud.d.ts +10 -0
- package/dist/choropleth-4ac6ac20.js +82 -0
- package/dist/choropleth-4ac6ac20.js.map +1 -0
- package/dist/choropleth-f473ea0d.mjs +7997 -0
- package/dist/choropleth-f473ea0d.mjs.map +1 -0
- package/dist/color-scale-utils-5eb3eeaa.mjs +3809 -0
- package/dist/color-scale-utils-5eb3eeaa.mjs.map +1 -0
- package/dist/color-scale-utils-7d463811.js +3 -0
- package/dist/color-scale-utils-7d463811.js.map +1 -0
- package/dist/components/axes/axis.d.ts +24 -0
- package/dist/components/axes/chart-clip.d.ts +13 -0
- package/dist/components/axes/grid-brush.d.ts +10 -0
- package/dist/components/axes/grid.d.ts +22 -0
- package/dist/components/axes/index.d.ts +12 -0
- package/dist/components/axes/ruler-binned.d.ts +10 -0
- package/dist/components/axes/ruler.d.ts +30 -0
- package/dist/components/axes/toolbar.d.ts +40 -0
- package/dist/components/axes/two-dimensional-axes.d.ts +16 -0
- package/dist/components/axes/zero-line.d.ts +7 -0
- package/dist/components/axes/zoom-bar.d.ts +31 -0
- package/dist/components/component.d.ts +30 -0
- package/dist/components/diagrams/buildPaths.d.ts +40 -0
- package/dist/components/diagrams/index.d.ts +2 -0
- package/dist/components/essentials/canvas-chart-clip.d.ts +6 -0
- package/dist/components/essentials/color-scale-legend.d.ts +20 -0
- package/dist/components/essentials/geo-projection.d.ts +16 -0
- package/dist/components/essentials/highlights.d.ts +13 -0
- package/dist/components/essentials/index.d.ts +11 -0
- package/dist/components/essentials/legend.d.ts +11 -0
- package/dist/components/essentials/modal.d.ts +14 -0
- package/dist/components/essentials/threshold.d.ts +20 -0
- package/dist/components/essentials/title-meter.d.ts +30 -0
- package/dist/components/essentials/title.d.ts +20 -0
- package/dist/components/essentials/tooltip.d.ts +22 -0
- package/dist/components/graphs/alluvial.d.ts +14 -0
- package/dist/components/graphs/area-stacked.d.ts +11 -0
- package/dist/components/graphs/area.d.ts +12 -0
- package/dist/components/graphs/bar-grouped.d.ts +22 -0
- package/dist/components/graphs/bar-simple.d.ts +12 -0
- package/dist/components/graphs/bar-stacked.d.ts +13 -0
- package/dist/components/graphs/bar.d.ts +5 -0
- package/dist/components/graphs/boxplot.d.ts +9 -0
- package/dist/components/graphs/bubble.d.ts +13 -0
- package/dist/components/graphs/bullet.d.ts +12 -0
- package/dist/components/graphs/choropleth.d.ts +6 -0
- package/dist/components/graphs/circle-pack.d.ts +19 -0
- package/dist/components/graphs/donut.d.ts +9 -0
- package/dist/components/graphs/gauge.d.ts +27 -0
- package/dist/components/graphs/heatmap.d.ts +25 -0
- package/dist/components/graphs/histogram.d.ts +12 -0
- package/dist/components/graphs/index.d.ts +28 -0
- package/dist/components/graphs/line.d.ts +11 -0
- package/dist/components/graphs/lollipop.d.ts +14 -0
- package/dist/components/graphs/meter.d.ts +10 -0
- package/dist/components/graphs/pie.d.ts +16 -0
- package/dist/components/graphs/radar.d.ts +25 -0
- package/dist/components/graphs/scatter-stacked.d.ts +8 -0
- package/dist/components/graphs/scatter.d.ts +21 -0
- package/dist/components/graphs/skeleton-lines.d.ts +12 -0
- package/dist/components/graphs/skeleton.d.ts +23 -0
- package/dist/components/graphs/tree.d.ts +9 -0
- package/dist/components/graphs/treemap.d.ts +11 -0
- package/dist/components/graphs/wordcloud.d.ts +12 -0
- package/dist/components/index.d.ts +6 -0
- package/dist/components/index.js +2 -0
- package/dist/components/index.js.map +1 -0
- package/dist/components/index.mjs +76 -0
- package/dist/components/index.mjs.map +1 -0
- package/dist/components/layout/index.d.ts +2 -0
- package/dist/components/layout/layout.d.ts +18 -0
- package/dist/components/layout/spacer.d.ts +5 -0
- package/dist/configuration-non-customizable.d.ts +263 -0
- package/dist/configuration.d.ts +48 -0
- package/dist/demo/charts/alluvial.d.ts +109 -0
- package/dist/demo/charts/area.d.ts +224 -0
- package/dist/demo/charts/bar.d.ts +681 -0
- package/dist/demo/charts/boxplot.d.ts +34 -0
- package/dist/demo/charts/bubble.d.ts +141 -0
- package/dist/demo/charts/bullet.d.ts +24 -0
- package/dist/demo/charts/chart-types.d.ts +128 -0
- package/dist/demo/charts/choropleth.d.ts +738 -0
- package/dist/demo/charts/circle-pack.d.ts +91 -0
- package/dist/demo/charts/combo.d.ts +482 -0
- package/dist/demo/charts/donut.d.ts +64 -0
- package/dist/demo/charts/gauge.d.ts +40 -0
- package/dist/demo/charts/heatmap.d.ts +125 -0
- package/dist/demo/charts/hightlight.d.ts +40 -0
- package/dist/demo/charts/histogram.d.ts +63 -0
- package/dist/demo/charts/index.d.ts +62 -0
- package/dist/demo/charts/line.d.ts +361 -0
- package/dist/demo/charts/lollipop.d.ts +39 -0
- package/dist/demo/charts/meter.d.ts +95 -0
- package/dist/demo/charts/pie.d.ts +46 -0
- package/dist/demo/charts/radar.d.ts +63 -0
- package/dist/demo/charts/scatter.d.ts +118 -0
- package/dist/demo/charts/step.d.ts +96 -0
- package/dist/demo/charts/time-series-axis.d.ts +293 -0
- package/dist/demo/charts/toolbar.d.ts +12 -0
- package/dist/demo/charts/topojson-110.d.ts +360 -0
- package/dist/demo/charts/tree.d.ts +30 -0
- package/dist/demo/charts/treemap.d.ts +15 -0
- package/dist/demo/charts/wordcloud.d.ts +14 -0
- package/dist/demo/charts/zoom-bar.d.ts +79 -0
- package/dist/demo/index.d.ts +4 -0
- package/dist/demo/index.js +470 -0
- package/dist/demo/index.js.map +1 -0
- package/dist/demo/index.mjs +51789 -0
- package/dist/demo/index.mjs.map +1 -0
- package/dist/demo/styles.css +30574 -0
- package/dist/demo/styles.css.map +1 -0
- package/dist/demo/utils/index.d.ts +2 -0
- package/dist/demo/utils/sandbox.d.ts +39 -0
- package/dist/demo/utils/story-widgets.d.ts +7 -0
- package/dist/enums-a96ef472.mjs +89 -0
- package/dist/enums-a96ef472.mjs.map +1 -0
- package/dist/enums-aa2efd99.js +2 -0
- package/dist/enums-aa2efd99.js.map +1 -0
- package/dist/index-822564ed.js +2 -0
- package/dist/index-822564ed.js.map +1 -0
- package/dist/index-a266373c.mjs +749 -0
- package/dist/index-a266373c.mjs.map +1 -0
- package/dist/index-becfb567.mjs +72 -0
- package/dist/index-becfb567.mjs.map +1 -0
- package/dist/index-d865d500.js +2 -0
- package/dist/index-d865d500.js.map +1 -0
- package/dist/index-ec554115.mjs +62 -0
- package/dist/index-ec554115.mjs.map +1 -0
- package/dist/index-f23685eb.js +2 -0
- package/dist/index-f23685eb.js.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +1121 -0
- package/dist/index.mjs.map +1 -0
- package/dist/interfaces/axis-scales.d.ts +201 -0
- package/dist/interfaces/charts.d.ts +520 -0
- package/dist/interfaces/components.d.ts +231 -0
- package/dist/interfaces/index.d.ts +12 -0
- package/dist/interfaces/index.js +2 -0
- package/dist/interfaces/index.js.map +1 -0
- package/dist/interfaces/index.mjs +58 -0
- package/dist/interfaces/index.mjs.map +1 -0
- package/dist/interfaces/layout.d.ts +21 -0
- package/dist/interfaces/model.d.ts +35 -0
- package/dist/interfaces/services.d.ts +20 -0
- package/dist/interfaces/truncation.d.ts +17 -0
- package/dist/model/binned-charts.d.ts +7 -0
- package/dist/model/cartesian-charts.d.ts +24 -0
- package/dist/model/heatmap.d.ts +57 -0
- package/dist/model/index.d.ts +16 -0
- package/dist/model/index.js +3 -0
- package/dist/model/index.js.map +1 -0
- package/dist/model/index.mjs +1107 -0
- package/dist/model/index.mjs.map +1 -0
- package/dist/model/meter.d.ts +20 -0
- package/dist/model/model.d.ts +110 -0
- package/dist/services/angle-utils.d.ts +15 -0
- package/dist/services/curves.d.ts +24 -0
- package/dist/services/essentials/dom-utils.d.ts +45 -0
- package/dist/services/essentials/events.d.ts +8 -0
- package/dist/services/essentials/files.d.ts +7 -0
- package/dist/services/essentials/gradient-utils.d.ts +6 -0
- package/dist/services/essentials/index.d.ts +5 -0
- package/dist/services/essentials/transitions.d.ts +13 -0
- package/dist/services/index.d.ts +9 -0
- package/dist/services/index.js +2 -0
- package/dist/services/index.js.map +1 -0
- package/dist/services/index.mjs +32 -0
- package/dist/services/index.mjs.map +1 -0
- package/dist/services/scales-cartesian.d.ts +89 -0
- package/dist/services/service.d.ts +11 -0
- package/dist/services/zoom.d.ts +21 -0
- package/dist/styles/_chart-holder.scss +50 -0
- package/dist/styles/color-palatte.scss +458 -0
- package/dist/styles/colors.scss +131 -0
- package/dist/styles/components/_color-legend.scss +11 -0
- package/dist/styles/components/_edge.scss +65 -0
- package/dist/styles/components/_grid.scss +30 -0
- package/dist/styles/components/_marker.scss +7 -0
- package/dist/styles/components/_meter-title.scss +37 -0
- package/dist/styles/components/_tooltip.scss +132 -0
- package/dist/styles/components/diagrams/_card-node.scss +97 -0
- package/dist/styles/components/diagrams/_edge.scss +66 -0
- package/dist/styles/components/diagrams/_shape-node.scss +89 -0
- package/dist/styles/components/diagrams/index.scss +4 -0
- package/dist/styles/graphs/_alluvial.scss +17 -0
- package/dist/styles/graphs/_bullet.scss +36 -0
- package/dist/styles/graphs/_circle-pack.scss +36 -0
- package/dist/styles/graphs/_gauge.scss +23 -0
- package/dist/styles/graphs/_heatmap.scss +60 -0
- package/dist/styles/graphs/_meter.scss +34 -0
- package/dist/styles/graphs/_radar.scss +18 -0
- package/dist/styles/graphs/_scatter-stacked.scss +12 -0
- package/dist/styles/graphs/_tree.scss +46 -0
- package/dist/styles/styles.scss +40 -0
- package/dist/styles/tokens.scss +407 -0
- package/dist/styles.css +28463 -0
- package/dist/styles.css.map +1 -0
- package/dist/styles.min.css +1 -0
- package/dist/styles.min.css.map +1 -0
- package/dist/tools.d.ts +150 -0
- package/package.json +140 -102
- package/axis-chart.d.ts +0 -10
- package/axis-chart.js +0 -169
- package/axis-chart.js.map +0 -1
- package/build/demo/create-codesandbox.d.ts +0 -113
- package/build/demo/data/CHART_TYPES.d.ts +0 -128
- package/build/demo/data/alluvial.d.ts +0 -109
- package/build/demo/data/area.d.ts +0 -224
- package/build/demo/data/bar.d.ts +0 -681
- package/build/demo/data/boxplot.d.ts +0 -34
- package/build/demo/data/bubble.d.ts +0 -141
- package/build/demo/data/bullet.d.ts +0 -24
- package/build/demo/data/choropleth.d.ts +0 -738
- package/build/demo/data/circle-pack.d.ts +0 -91
- package/build/demo/data/combo.d.ts +0 -482
- package/build/demo/data/donut.d.ts +0 -64
- package/build/demo/data/gauge.d.ts +0 -40
- package/build/demo/data/heatmap.d.ts +0 -125
- package/build/demo/data/high-scale.d.ts +0 -1
- package/build/demo/data/hightlight.d.ts +0 -40
- package/build/demo/data/histogram.d.ts +0 -63
- package/build/demo/data/index.d.ts +0 -33
- package/build/demo/data/line.d.ts +0 -361
- package/build/demo/data/lollipop.d.ts +0 -39
- package/build/demo/data/meter.d.ts +0 -95
- package/build/demo/data/pie.d.ts +0 -46
- package/build/demo/data/radar.d.ts +0 -63
- package/build/demo/data/scatter.d.ts +0 -118
- package/build/demo/data/step.d.ts +0 -96
- package/build/demo/data/time-series-axis.d.ts +0 -368
- package/build/demo/data/toolbar.d.ts +0 -12
- package/build/demo/data/topojson-110.d.ts +0 -360
- package/build/demo/data/tree.d.ts +0 -30
- package/build/demo/data/treemap.d.ts +0 -15
- package/build/demo/data/wordcloud.d.ts +0 -14
- package/build/demo/data/zoom-bar.d.ts +0 -94
- package/build/demo/utils.d.ts +0 -40
- package/build/src/axis-chart.d.ts +0 -10
- package/build/src/chart.d.ts +0 -14
- package/build/src/charts/alluvial.d.ts +0 -8
- package/build/src/charts/area-stacked.d.ts +0 -6
- package/build/src/charts/area.d.ts +0 -6
- package/build/src/charts/bar-grouped.d.ts +0 -6
- package/build/src/charts/bar-simple.d.ts +0 -6
- package/build/src/charts/bar-stacked.d.ts +0 -6
- package/build/src/charts/boxplot.d.ts +0 -8
- package/build/src/charts/bubble.d.ts +0 -6
- package/build/src/charts/bullet.d.ts +0 -8
- package/build/src/charts/choropleth.d.ts +0 -10
- package/build/src/charts/circle-pack.d.ts +0 -8
- package/build/src/charts/combo.d.ts +0 -7
- package/build/src/charts/donut.d.ts +0 -6
- package/build/src/charts/gauge.d.ts +0 -8
- package/build/src/charts/heatmap.d.ts +0 -10
- package/build/src/charts/histogram.d.ts +0 -8
- package/build/src/charts/index.d.ts +0 -25
- package/build/src/charts/line.d.ts +0 -6
- package/build/src/charts/lollipop.d.ts +0 -6
- package/build/src/charts/meter.d.ts +0 -8
- package/build/src/charts/pie.d.ts +0 -8
- package/build/src/charts/radar.d.ts +0 -8
- package/build/src/charts/scatter.d.ts +0 -6
- package/build/src/charts/tree.d.ts +0 -8
- package/build/src/charts/treemap.d.ts +0 -8
- package/build/src/charts/wordcloud.d.ts +0 -8
- package/build/src/components/axes/axis.d.ts +0 -24
- package/build/src/components/axes/chart-clip.d.ts +0 -13
- package/build/src/components/axes/grid-brush.d.ts +0 -10
- package/build/src/components/axes/grid.d.ts +0 -22
- package/build/src/components/axes/hover-axis.d.ts +0 -10
- package/build/src/components/axes/ruler-binned.d.ts +0 -7
- package/build/src/components/axes/ruler-stacked.d.ts +0 -4
- package/build/src/components/axes/ruler.d.ts +0 -27
- package/build/src/components/axes/toolbar.d.ts +0 -40
- package/build/src/components/axes/two-dimensional-axes.d.ts +0 -16
- package/build/src/components/axes/zero-line.d.ts +0 -7
- package/build/src/components/axes/zoom-bar.d.ts +0 -28
- package/build/src/components/component.d.ts +0 -28
- package/build/src/components/diagrams/buildPaths.d.ts +0 -63
- package/build/src/components/diagrams/markerDefinitions.d.ts +0 -37
- package/build/src/components/essentials/canvas-chart-clip.d.ts +0 -6
- package/build/src/components/essentials/color-scale-legend.d.ts +0 -20
- package/build/src/components/essentials/geo-projection.d.ts +0 -16
- package/build/src/components/essentials/highlights.d.ts +0 -13
- package/build/src/components/essentials/legend.d.ts +0 -11
- package/build/src/components/essentials/modal.d.ts +0 -14
- package/build/src/components/essentials/threshold.d.ts +0 -20
- package/build/src/components/essentials/title-meter.d.ts +0 -30
- package/build/src/components/essentials/title.d.ts +0 -20
- package/build/src/components/essentials/tooltip-axis.d.ts +0 -4
- package/build/src/components/essentials/tooltip.d.ts +0 -22
- package/build/src/components/graphs/alluvial.d.ts +0 -14
- package/build/src/components/graphs/area-stacked.d.ts +0 -11
- package/build/src/components/graphs/area.d.ts +0 -12
- package/build/src/components/graphs/bar-grouped.d.ts +0 -22
- package/build/src/components/graphs/bar-simple.d.ts +0 -12
- package/build/src/components/graphs/bar-stacked.d.ts +0 -13
- package/build/src/components/graphs/bar.d.ts +0 -5
- package/build/src/components/graphs/boxplot.d.ts +0 -9
- package/build/src/components/graphs/bubble.d.ts +0 -13
- package/build/src/components/graphs/bullet.d.ts +0 -12
- package/build/src/components/graphs/choropleth.d.ts +0 -6
- package/build/src/components/graphs/circle-pack.d.ts +0 -19
- package/build/src/components/graphs/donut.d.ts +0 -9
- package/build/src/components/graphs/gauge.d.ts +0 -27
- package/build/src/components/graphs/heatmap.d.ts +0 -25
- package/build/src/components/graphs/histogram.d.ts +0 -12
- package/build/src/components/graphs/line.d.ts +0 -11
- package/build/src/components/graphs/lollipop.d.ts +0 -14
- package/build/src/components/graphs/meter.d.ts +0 -10
- package/build/src/components/graphs/pie.d.ts +0 -16
- package/build/src/components/graphs/radar.d.ts +0 -25
- package/build/src/components/graphs/scatter-stacked.d.ts +0 -8
- package/build/src/components/graphs/scatter.d.ts +0 -21
- package/build/src/components/graphs/skeleton-lines.d.ts +0 -11
- package/build/src/components/graphs/skeleton.d.ts +0 -22
- package/build/src/components/graphs/tree.d.ts +0 -9
- package/build/src/components/graphs/treemap.d.ts +0 -11
- package/build/src/components/graphs/wordcloud.d.ts +0 -12
- package/build/src/components/index.d.ts +0 -53
- package/build/src/components/layout/layout.d.ts +0 -17
- package/build/src/components/layout/spacer.d.ts +0 -5
- package/build/src/configuration-non-customizable.d.ts +0 -263
- package/build/src/configuration.d.ts +0 -46
- package/build/src/interfaces/a11y.d.ts +0 -12
- package/build/src/interfaces/axis-scales.d.ts +0 -201
- package/build/src/interfaces/charts.d.ts +0 -512
- package/build/src/interfaces/components.d.ts +0 -231
- package/build/src/interfaces/enums.d.ts +0 -261
- package/build/src/interfaces/events.d.ts +0 -239
- package/build/src/interfaces/index.d.ts +0 -7
- package/build/src/interfaces/layout.d.ts +0 -15
- package/build/src/interfaces/model.d.ts +0 -35
- package/build/src/interfaces/truncation.d.ts +0 -17
- package/build/src/model/alluvial.d.ts +0 -8
- package/build/src/model/binned-charts.d.ts +0 -7
- package/build/src/model/boxplot.d.ts +0 -14
- package/build/src/model/bullet.d.ts +0 -14
- package/build/src/model/cartesian-charts.d.ts +0 -24
- package/build/src/model/choropleth.d.ts +0 -29
- package/build/src/model/circle-pack.d.ts +0 -36
- package/build/src/model/gauge.d.ts +0 -9
- package/build/src/model/heatmap.d.ts +0 -52
- package/build/src/model/meter.d.ts +0 -19
- package/build/src/model/model.d.ts +0 -107
- package/build/src/model/pie.d.ts +0 -9
- package/build/src/model/radar.d.ts +0 -7
- package/build/src/model/tree.d.ts +0 -14
- package/build/src/model/treemap.d.ts +0 -8
- package/build/src/model/wordcloud.d.ts +0 -7
- package/build/src/services/angle-utils.d.ts +0 -205
- package/build/src/services/canvas-zoom.d.ts +0 -11
- package/build/src/services/color-scale-utils.d.ts +0 -10
- package/build/src/services/curves.d.ts +0 -25
- package/build/src/services/essentials/dom-utils.d.ts +0 -39
- package/build/src/services/essentials/events.d.ts +0 -8
- package/build/src/services/essentials/files.d.ts +0 -6
- package/build/src/services/essentials/gradient-utils.d.ts +0 -6
- package/build/src/services/essentials/transitions.d.ts +0 -13
- package/build/src/services/index.d.ts +0 -10
- package/build/src/services/scales-cartesian.d.ts +0 -86
- package/build/src/services/service.d.ts +0 -10
- package/build/src/services/time-series.d.ts +0 -787
- package/build/src/services/zoom.d.ts +0 -21
- package/build/src/tools.d.ts +0 -2427
- package/build/stories/all.stories.d.ts +0 -1
- package/build/stories/tutorials/api.d.ts +0 -4
- package/build/stories/tutorials/color-palette.d.ts +0 -4
- package/build/stories/tutorials/combo-charts.d.ts +0 -4
- package/build/stories/tutorials/dual-axes.d.ts +0 -4
- package/build/stories/tutorials/event-listeners.d.ts +0 -4
- package/build/stories/tutorials/getting-started/angular.d.ts +0 -5
- package/build/stories/tutorials/getting-started/react.d.ts +0 -5
- package/build/stories/tutorials/getting-started/vanilla.d.ts +0 -5
- package/build/stories/tutorials/getting-started/vue.d.ts +0 -5
- package/build/stories/tutorials/index.d.ts +0 -11
- package/build/stories/tutorials/tabular-data-format.d.ts +0 -4
- package/build/stories/tutorials/themes.d.ts +0 -4
- package/build/stories/tutorials.stories.d.ts +0 -1
- package/bundle.js +0 -17
- package/chart.d.ts +0 -14
- package/chart.js +0 -198
- package/chart.js.map +0 -1
- package/charts/alluvial.d.ts +0 -8
- package/charts/alluvial.js +0 -46
- package/charts/alluvial.js.map +0 -1
- package/charts/area-stacked.d.ts +0 -6
- package/charts/area-stacked.js +0 -55
- package/charts/area-stacked.js.map +0 -1
- package/charts/area.d.ts +0 -6
- package/charts/area.js +0 -54
- package/charts/area.js.map +0 -1
- package/charts/bar-grouped.d.ts +0 -6
- package/charts/bar-grouped.js +0 -49
- package/charts/bar-grouped.js.map +0 -1
- package/charts/bar-simple.d.ts +0 -6
- package/charts/bar-simple.js +0 -49
- package/charts/bar-simple.js.map +0 -1
- package/charts/bar-stacked.d.ts +0 -6
- package/charts/bar-stacked.js +0 -50
- package/charts/bar-stacked.js.map +0 -1
- package/charts/boxplot.d.ts +0 -8
- package/charts/boxplot.js +0 -55
- package/charts/boxplot.js.map +0 -1
- package/charts/bubble.d.ts +0 -6
- package/charts/bubble.js +0 -49
- package/charts/bubble.js.map +0 -1
- package/charts/bullet.d.ts +0 -8
- package/charts/bullet.js +0 -50
- package/charts/bullet.js.map +0 -1
- package/charts/choropleth.d.ts +0 -10
- package/charts/choropleth.js +0 -141
- package/charts/choropleth.js.map +0 -1
- package/charts/circle-pack.d.ts +0 -8
- package/charts/circle-pack.js +0 -45
- package/charts/circle-pack.js.map +0 -1
- package/charts/combo.d.ts +0 -7
- package/charts/combo.js +0 -132
- package/charts/combo.js.map +0 -1
- package/charts/donut.d.ts +0 -6
- package/charts/donut.js +0 -46
- package/charts/donut.js.map +0 -1
- package/charts/gauge.d.ts +0 -8
- package/charts/gauge.js +0 -42
- package/charts/gauge.js.map +0 -1
- package/charts/heatmap.d.ts +0 -10
- package/charts/heatmap.js +0 -142
- package/charts/heatmap.js.map +0 -1
- package/charts/histogram.d.ts +0 -8
- package/charts/histogram.js +0 -48
- package/charts/histogram.js.map +0 -1
- package/charts/index.d.ts +0 -25
- package/charts/index.js +0 -26
- package/charts/index.js.map +0 -1
- package/charts/line.d.ts +0 -6
- package/charts/line.js +0 -48
- package/charts/line.js.map +0 -1
- package/charts/lollipop.d.ts +0 -6
- package/charts/lollipop.js +0 -50
- package/charts/lollipop.js.map +0 -1
- package/charts/meter.d.ts +0 -8
- package/charts/meter.js +0 -94
- package/charts/meter.js.map +0 -1
- package/charts/pie.d.ts +0 -8
- package/charts/pie.js +0 -55
- package/charts/pie.js.map +0 -1
- package/charts/radar.d.ts +0 -8
- package/charts/radar.js +0 -44
- package/charts/radar.js.map +0 -1
- package/charts/scatter.d.ts +0 -6
- package/charts/scatter.js +0 -49
- package/charts/scatter.js.map +0 -1
- package/charts/tree.d.ts +0 -8
- package/charts/tree.js +0 -47
- package/charts/tree.js.map +0 -1
- package/charts/treemap.d.ts +0 -8
- package/charts/treemap.js +0 -43
- package/charts/treemap.js.map +0 -1
- package/charts/wordcloud.d.ts +0 -8
- package/charts/wordcloud.js +0 -49
- package/charts/wordcloud.js.map +0 -1
- package/components/axes/axis.d.ts +0 -24
- package/components/axes/axis.js +0 -587
- package/components/axes/axis.js.map +0 -1
- package/components/axes/chart-clip.d.ts +0 -13
- package/components/axes/chart-clip.js +0 -63
- package/components/axes/chart-clip.js.map +0 -1
- package/components/axes/grid-brush.d.ts +0 -10
- package/components/axes/grid-brush.js +0 -170
- package/components/axes/grid-brush.js.map +0 -1
- package/components/axes/grid.d.ts +0 -22
- package/components/axes/grid.js +0 -235
- package/components/axes/grid.js.map +0 -1
- package/components/axes/hover-axis.js +0 -243
- package/components/axes/hover-axis.js.map +0 -1
- package/components/axes/ruler-binned.d.ts +0 -7
- package/components/axes/ruler-binned.js +0 -136
- package/components/axes/ruler-binned.js.map +0 -1
- package/components/axes/ruler-stacked.js +0 -26
- package/components/axes/ruler-stacked.js.map +0 -1
- package/components/axes/ruler.d.ts +0 -27
- package/components/axes/ruler.js +0 -209
- package/components/axes/ruler.js.map +0 -1
- package/components/axes/toolbar.d.ts +0 -40
- package/components/axes/toolbar.js +0 -558
- package/components/axes/toolbar.js.map +0 -1
- package/components/axes/two-dimensional-axes.d.ts +0 -16
- package/components/axes/two-dimensional-axes.js +0 -134
- package/components/axes/two-dimensional-axes.js.map +0 -1
- package/components/axes/zero-line.d.ts +0 -7
- package/components/axes/zero-line.js +0 -76
- package/components/axes/zero-line.js.map +0 -1
- package/components/axes/zoom-bar.d.ts +0 -28
- package/components/axes/zoom-bar.js +0 -490
- package/components/axes/zoom-bar.js.map +0 -1
- package/components/component.d.ts +0 -28
- package/components/component.js +0 -102
- package/components/component.js.map +0 -1
- package/components/diagrams/buildPaths.d.ts +0 -39
- package/components/diagrams/buildPaths.js +0 -71
- package/components/diagrams/buildPaths.js.map +0 -1
- package/components/diagrams/markerDefinitions.js +0 -38
- package/components/diagrams/markerDefinitions.js.map +0 -1
- package/components/essentials/canvas-chart-clip.d.ts +0 -6
- package/components/essentials/canvas-chart-clip.js +0 -46
- package/components/essentials/canvas-chart-clip.js.map +0 -1
- package/components/essentials/color-scale-legend.d.ts +0 -20
- package/components/essentials/color-scale-legend.js +0 -237
- package/components/essentials/color-scale-legend.js.map +0 -1
- package/components/essentials/geo-projection.d.ts +0 -16
- package/components/essentials/geo-projection.js +0 -160
- package/components/essentials/geo-projection.js.map +0 -1
- package/components/essentials/highlights.d.ts +0 -13
- package/components/essentials/highlights.js +0 -196
- package/components/essentials/highlights.js.map +0 -1
- package/components/essentials/legend.d.ts +0 -11
- package/components/essentials/legend.js +0 -428
- package/components/essentials/legend.js.map +0 -1
- package/components/essentials/modal.d.ts +0 -14
- package/components/essentials/modal.js +0 -89
- package/components/essentials/modal.js.map +0 -1
- package/components/essentials/threshold.d.ts +0 -20
- package/components/essentials/threshold.js +0 -306
- package/components/essentials/threshold.js.map +0 -1
- package/components/essentials/title-meter.d.ts +0 -30
- package/components/essentials/title-meter.js +0 -279
- package/components/essentials/title-meter.js.map +0 -1
- package/components/essentials/title.d.ts +0 -20
- package/components/essentials/title.js +0 -138
- package/components/essentials/title.js.map +0 -1
- package/components/essentials/tooltip-axis.js +0 -142
- package/components/essentials/tooltip-axis.js.map +0 -1
- package/components/essentials/tooltip.d.ts +0 -22
- package/components/essentials/tooltip.js +0 -263
- package/components/essentials/tooltip.js.map +0 -1
- package/components/graphs/alluvial.d.ts +0 -14
- package/components/graphs/alluvial.js +0 -535
- package/components/graphs/alluvial.js.map +0 -1
- package/components/graphs/area-stacked.d.ts +0 -11
- package/components/graphs/area-stacked.js +0 -131
- package/components/graphs/area-stacked.js.map +0 -1
- package/components/graphs/area.d.ts +0 -12
- package/components/graphs/area.js +0 -260
- package/components/graphs/area.js.map +0 -1
- package/components/graphs/bar-grouped.d.ts +0 -22
- package/components/graphs/bar-grouped.js +0 -312
- package/components/graphs/bar-grouped.js.map +0 -1
- package/components/graphs/bar-simple.d.ts +0 -12
- package/components/graphs/bar-simple.js +0 -218
- package/components/graphs/bar-simple.js.map +0 -1
- package/components/graphs/bar-stacked.d.ts +0 -13
- package/components/graphs/bar-stacked.js +0 -281
- package/components/graphs/bar-stacked.js.map +0 -1
- package/components/graphs/bar.d.ts +0 -5
- package/components/graphs/bar.js +0 -58
- package/components/graphs/bar.js.map +0 -1
- package/components/graphs/boxplot.d.ts +0 -9
- package/components/graphs/boxplot.js +0 -485
- package/components/graphs/boxplot.js.map +0 -1
- package/components/graphs/bubble.d.ts +0 -13
- package/components/graphs/bubble.js +0 -113
- package/components/graphs/bubble.js.map +0 -1
- package/components/graphs/bullet.d.ts +0 -12
- package/components/graphs/bullet.js +0 -395
- package/components/graphs/bullet.js.map +0 -1
- package/components/graphs/choropleth.d.ts +0 -6
- package/components/graphs/choropleth.js +0 -106
- package/components/graphs/choropleth.js.map +0 -1
- package/components/graphs/circle-pack.d.ts +0 -19
- package/components/graphs/circle-pack.js +0 -388
- package/components/graphs/circle-pack.js.map +0 -1
- package/components/graphs/donut.d.ts +0 -9
- package/components/graphs/donut.js +0 -116
- package/components/graphs/donut.js.map +0 -1
- package/components/graphs/gauge.d.ts +0 -27
- package/components/graphs/gauge.js +0 -347
- package/components/graphs/gauge.js.map +0 -1
- package/components/graphs/heatmap.d.ts +0 -25
- package/components/graphs/heatmap.js +0 -388
- package/components/graphs/heatmap.js.map +0 -1
- package/components/graphs/histogram.d.ts +0 -12
- package/components/graphs/histogram.js +0 -220
- package/components/graphs/histogram.js.map +0 -1
- package/components/graphs/line.d.ts +0 -11
- package/components/graphs/line.js +0 -179
- package/components/graphs/line.js.map +0 -1
- package/components/graphs/lollipop.d.ts +0 -14
- package/components/graphs/lollipop.js +0 -164
- package/components/graphs/lollipop.js.map +0 -1
- package/components/graphs/meter.d.ts +0 -10
- package/components/graphs/meter.js +0 -284
- package/components/graphs/meter.js.map +0 -1
- package/components/graphs/pie.d.ts +0 -16
- package/components/graphs/pie.js +0 -438
- package/components/graphs/pie.js.map +0 -1
- package/components/graphs/radar.d.ts +0 -25
- package/components/graphs/radar.js +0 -737
- package/components/graphs/radar.js.map +0 -1
- package/components/graphs/scatter-stacked.d.ts +0 -8
- package/components/graphs/scatter-stacked.js +0 -140
- package/components/graphs/scatter-stacked.js.map +0 -1
- package/components/graphs/scatter.d.ts +0 -21
- package/components/graphs/scatter.js +0 -360
- package/components/graphs/scatter.js.map +0 -1
- package/components/graphs/skeleton-lines.d.ts +0 -11
- package/components/graphs/skeleton-lines.js +0 -84
- package/components/graphs/skeleton-lines.js.map +0 -1
- package/components/graphs/skeleton.d.ts +0 -22
- package/components/graphs/skeleton.js +0 -272
- package/components/graphs/skeleton.js.map +0 -1
- package/components/graphs/tree.d.ts +0 -9
- package/components/graphs/tree.js +0 -262
- package/components/graphs/tree.js.map +0 -1
- package/components/graphs/treemap.d.ts +0 -11
- package/components/graphs/treemap.js +0 -344
- package/components/graphs/treemap.js.map +0 -1
- package/components/graphs/wordcloud.d.ts +0 -12
- package/components/graphs/wordcloud.js +0 -268
- package/components/graphs/wordcloud.js.map +0 -1
- package/components/index.d.ts +0 -53
- package/components/index.js +0 -59
- package/components/index.js.map +0 -1
- package/components/layout/layout.d.ts +0 -17
- package/components/layout/layout.js +0 -191
- package/components/layout/layout.js.map +0 -1
- package/components/layout/spacer.d.ts +0 -5
- package/components/layout/spacer.js +0 -33
- package/components/layout/spacer.js.map +0 -1
- package/configuration-non-customizable.d.ts +0 -263
- package/configuration-non-customizable.js +0 -276
- package/configuration-non-customizable.js.map +0 -1
- package/configuration.d.ts +0 -46
- package/configuration.js +0 -552
- package/configuration.js.map +0 -1
- package/demo/create-codesandbox.d.ts +0 -65
- package/demo/create-codesandbox.js +0 -173
- package/demo/create-codesandbox.js.map +0 -1
- package/demo/data/CHART_TYPES.d.ts +0 -128
- package/demo/data/CHART_TYPES.js +0 -128
- package/demo/data/CHART_TYPES.js.map +0 -1
- package/demo/data/alluvial.d.ts +0 -109
- package/demo/data/alluvial.js +0 -328
- package/demo/data/alluvial.js.map +0 -1
- package/demo/data/area.d.ts +0 -224
- package/demo/data/area.js +0 -330
- package/demo/data/area.js.map +0 -1
- package/demo/data/bar.d.ts +0 -681
- package/demo/data/bar.js +0 -915
- package/demo/data/bar.js.map +0 -1
- package/demo/data/boxplot.d.ts +0 -34
- package/demo/data/boxplot.js +0 -48
- package/demo/data/boxplot.js.map +0 -1
- package/demo/data/bubble.d.ts +0 -141
- package/demo/data/bubble.js +0 -182
- package/demo/data/bubble.js.map +0 -1
- package/demo/data/bullet.d.ts +0 -24
- package/demo/data/bullet.js +0 -55
- package/demo/data/bullet.js.map +0 -1
- package/demo/data/bundle.js +0 -1
- package/demo/data/choropleth.d.ts +0 -738
- package/demo/data/choropleth.js +0 -1684
- package/demo/data/choropleth.js.map +0 -1
- package/demo/data/circle-pack.d.ts +0 -91
- package/demo/data/circle-pack.js +0 -224
- package/demo/data/circle-pack.js.map +0 -1
- package/demo/data/combo.d.ts +0 -482
- package/demo/data/combo.js +0 -571
- package/demo/data/combo.js.map +0 -1
- package/demo/data/donut.d.ts +0 -64
- package/demo/data/donut.js +0 -60
- package/demo/data/donut.js.map +0 -1
- package/demo/data/gauge.d.ts +0 -40
- package/demo/data/gauge.js +0 -41
- package/demo/data/gauge.js.map +0 -1
- package/demo/data/heatmap.d.ts +0 -125
- package/demo/data/heatmap.js +0 -1149
- package/demo/data/heatmap.js.map +0 -1
- package/demo/data/high-scale.d.ts +0 -1
- package/demo/data/high-scale.js +0 -5
- package/demo/data/high-scale.js.map +0 -1
- package/demo/data/hightlight.d.ts +0 -40
- package/demo/data/hightlight.js +0 -44
- package/demo/data/hightlight.js.map +0 -1
- package/demo/data/histogram.d.ts +0 -63
- package/demo/data/histogram.js +0 -312
- package/demo/data/histogram.js.map +0 -1
- package/demo/data/index.d.ts +0 -33
- package/demo/data/index.js +0 -1305
- package/demo/data/index.js.map +0 -1
- package/demo/data/line.d.ts +0 -361
- package/demo/data/line.js +0 -480
- package/demo/data/line.js.map +0 -1
- package/demo/data/lollipop.d.ts +0 -39
- package/demo/data/lollipop.js +0 -37
- package/demo/data/lollipop.js.map +0 -1
- package/demo/data/meter.d.ts +0 -95
- package/demo/data/meter.js +0 -114
- package/demo/data/meter.js.map +0 -1
- package/demo/data/pie.d.ts +0 -46
- package/demo/data/pie.js +0 -55
- package/demo/data/pie.js.map +0 -1
- package/demo/data/radar.d.ts +0 -63
- package/demo/data/radar.js +0 -118
- package/demo/data/radar.js.map +0 -1
- package/demo/data/scatter.d.ts +0 -118
- package/demo/data/scatter.js +0 -143
- package/demo/data/scatter.js.map +0 -1
- package/demo/data/step.d.ts +0 -96
- package/demo/data/step.js +0 -27
- package/demo/data/step.js.map +0 -1
- package/demo/data/time-series-axis.d.ts +0 -368
- package/demo/data/time-series-axis.js +0 -436
- package/demo/data/time-series-axis.js.map +0 -1
- package/demo/data/toolbar.d.ts +0 -12
- package/demo/data/toolbar.js +0 -67
- package/demo/data/toolbar.js.map +0 -1
- package/demo/data/topojson-110.d.ts +0 -360
- package/demo/data/topojson-110.js +0 -40724
- package/demo/data/topojson-110.js.map +0 -1
- package/demo/data/tree.d.ts +0 -30
- package/demo/data/tree.js +0 -209
- package/demo/data/tree.js.map +0 -1
- package/demo/data/treemap.d.ts +0 -15
- package/demo/data/treemap.js +0 -93
- package/demo/data/treemap.js.map +0 -1
- package/demo/data/wordcloud.d.ts +0 -14
- package/demo/data/wordcloud.js +0 -105
- package/demo/data/wordcloud.js.map +0 -1
- package/demo/data/zoom-bar.d.ts +0 -94
- package/demo/data/zoom-bar.js +0 -187
- package/demo/data/zoom-bar.js.map +0 -1
- package/demo/styles.css +0 -31231
- package/demo/styles.css.map +0 -1
- package/demo/styles.min.css +0 -1
- package/demo/styles.min.css.map +0 -1
- package/demo/tsconfig.tsbuildinfo +0 -1451
- package/demo/utils.d.ts +0 -24
- package/demo/utils.js +0 -222
- package/demo/utils.js.map +0 -1
- package/index.d.ts +0 -4
- package/index.js +0 -6
- package/index.js.map +0 -1
- package/interfaces/a11y.js +0 -14
- package/interfaces/a11y.js.map +0 -1
- package/interfaces/axis-scales.d.ts +0 -201
- package/interfaces/axis-scales.js +0 -1
- package/interfaces/axis-scales.js.map +0 -1
- package/interfaces/charts.d.ts +0 -512
- package/interfaces/charts.js +0 -1
- package/interfaces/charts.js.map +0 -1
- package/interfaces/components.d.ts +0 -231
- package/interfaces/components.js +0 -1
- package/interfaces/components.js.map +0 -1
- package/interfaces/enums.js +0 -296
- package/interfaces/enums.js.map +0 -1
- package/interfaces/events.js +0 -269
- package/interfaces/events.js.map +0 -1
- package/interfaces/index.d.ts +0 -7
- package/interfaces/index.js +0 -3
- package/interfaces/index.js.map +0 -1
- package/interfaces/layout.d.ts +0 -15
- package/interfaces/layout.js +0 -1
- package/interfaces/layout.js.map +0 -1
- package/interfaces/model.d.ts +0 -35
- package/interfaces/model.js +0 -1
- package/interfaces/model.js.map +0 -1
- package/interfaces/truncation.d.ts +0 -17
- package/interfaces/truncation.js +0 -1
- package/interfaces/truncation.js.map +0 -1
- package/model/alluvial.js +0 -47
- package/model/alluvial.js.map +0 -1
- package/model/binned-charts.d.ts +0 -7
- package/model/binned-charts.js +0 -52
- package/model/binned-charts.js.map +0 -1
- package/model/boxplot.js +0 -174
- package/model/boxplot.js.map +0 -1
- package/model/bullet.js +0 -74
- package/model/bullet.js.map +0 -1
- package/model/cartesian-charts.d.ts +0 -24
- package/model/cartesian-charts.js +0 -202
- package/model/cartesian-charts.js.map +0 -1
- package/model/choropleth.js +0 -105
- package/model/choropleth.js.map +0 -1
- package/model/circle-pack.js +0 -189
- package/model/circle-pack.js.map +0 -1
- package/model/gauge.js +0 -51
- package/model/gauge.js.map +0 -1
- package/model/heatmap.d.ts +0 -52
- package/model/heatmap.js +0 -220
- package/model/heatmap.js.map +0 -1
- package/model/meter.d.ts +0 -19
- package/model/meter.js +0 -118
- package/model/meter.js.map +0 -1
- package/model/model.d.ts +0 -107
- package/model/model.js +0 -712
- package/model/model.js.map +0 -1
- package/model/pie.js +0 -66
- package/model/pie.js.map +0 -1
- package/model/radar.js +0 -52
- package/model/radar.js.map +0 -1
- package/model/tree.js +0 -56
- package/model/tree.js.map +0 -1
- package/model/treemap.js +0 -44
- package/model/treemap.js.map +0 -1
- package/model/wordcloud.js +0 -47
- package/model/wordcloud.js.map +0 -1
- package/polyfills.d.ts +0 -0
- package/polyfills.js +0 -29
- package/polyfills.js.map +0 -1
- package/services/angle-utils.d.ts +0 -16
- package/services/angle-utils.js +0 -82
- package/services/angle-utils.js.map +0 -1
- package/services/canvas-zoom.js +0 -72
- package/services/canvas-zoom.js.map +0 -1
- package/services/color-scale-utils.js +0 -64
- package/services/color-scale-utils.js.map +0 -1
- package/services/curves.d.ts +0 -25
- package/services/curves.js +0 -77
- package/services/curves.js.map +0 -1
- package/services/essentials/dom-utils.d.ts +0 -39
- package/services/essentials/dom-utils.js +0 -423
- package/services/essentials/dom-utils.js.map +0 -1
- package/services/essentials/events.d.ts +0 -8
- package/services/essentials/events.js +0 -53
- package/services/essentials/events.js.map +0 -1
- package/services/essentials/files.d.ts +0 -6
- package/services/essentials/files.js +0 -60
- package/services/essentials/files.js.map +0 -1
- package/services/essentials/gradient-utils.d.ts +0 -6
- package/services/essentials/gradient-utils.js +0 -85
- package/services/essentials/gradient-utils.js.map +0 -1
- package/services/essentials/transitions.d.ts +0 -13
- package/services/essentials/transitions.js +0 -51
- package/services/essentials/transitions.js.map +0 -1
- package/services/index.d.ts +0 -10
- package/services/index.js +0 -13
- package/services/index.js.map +0 -1
- package/services/scales-cartesian.d.ts +0 -86
- package/services/scales-cartesian.js +0 -656
- package/services/scales-cartesian.js.map +0 -1
- package/services/service.d.ts +0 -10
- package/services/service.js +0 -24
- package/services/service.js.map +0 -1
- package/services/time-series.js +0 -147
- package/services/time-series.js.map +0 -1
- package/services/zoom.d.ts +0 -21
- package/services/zoom.js +0 -217
- package/services/zoom.js.map +0 -1
- package/styles/_chart-holder.scss +0 -50
- package/styles/color-palatte.scss +0 -458
- package/styles/colors.scss +0 -155
- package/styles/components/_color-legend.scss +0 -11
- package/styles/components/_edge.scss +0 -65
- package/styles/components/_grid.scss +0 -30
- package/styles/components/_marker.scss +0 -7
- package/styles/components/_meter-title.scss +0 -37
- package/styles/components/_tooltip.scss +0 -132
- package/styles/components/diagrams/_card-node.scss +0 -97
- package/styles/components/diagrams/_edge.scss +0 -66
- package/styles/components/diagrams/_shape-node.scss +0 -89
- package/styles/components/diagrams/index.scss +0 -4
- package/styles/graphs/_alluvial.scss +0 -17
- package/styles/graphs/_bullet.scss +0 -36
- package/styles/graphs/_circle-pack.scss +0 -36
- package/styles/graphs/_gauge.scss +0 -23
- package/styles/graphs/_heatmap.scss +0 -60
- package/styles/graphs/_meter.scss +0 -34
- package/styles/graphs/_radar.scss +0 -18
- package/styles/graphs/_scatter-stacked.scss +0 -12
- package/styles/graphs/_tree.scss +0 -47
- package/styles/styles.scss +0 -35
- package/styles/tokens.scss +0 -416
- package/styles.css +0 -6325
- package/styles.css.map +0 -1
- package/styles.min.css +0 -1
- package/styles.min.css.map +0 -1
- package/tools.d.ts +0 -144
- package/tools.js +0 -348
- package/tools.js.map +0 -1
- package/tsconfig.tsbuildinfo +0 -3816
- /package/{components → dist/components}/axes/hover-axis.d.ts +0 -0
- /package/{components → dist/components}/axes/ruler-stacked.d.ts +0 -0
- /package/{components → dist/components}/diagrams/markerDefinitions.d.ts +0 -0
- /package/{components → dist/components}/essentials/tooltip-axis.d.ts +0 -0
- /package/{interfaces → dist/interfaces}/a11y.d.ts +0 -0
- /package/{interfaces → dist/interfaces}/enums.d.ts +0 -0
- /package/{interfaces → dist/interfaces}/events.d.ts +0 -0
- /package/{model → dist/model}/alluvial.d.ts +0 -0
- /package/{model → dist/model}/boxplot.d.ts +0 -0
- /package/{model → dist/model}/bullet.d.ts +0 -0
- /package/{model → dist/model}/choropleth.d.ts +0 -0
- /package/{model → dist/model}/circle-pack.d.ts +0 -0
- /package/{model → dist/model}/gauge.d.ts +0 -0
- /package/{model → dist/model}/pie.d.ts +0 -0
- /package/{model → dist/model}/radar.d.ts +0 -0
- /package/{model → dist/model}/tree.d.ts +0 -0
- /package/{model → dist/model}/treemap.d.ts +0 -0
- /package/{model → dist/model}/wordcloud.d.ts +0 -0
- /package/{services → dist/services}/canvas-zoom.d.ts +0 -0
- /package/{services → dist/services}/color-scale-utils.d.ts +0 -0
- /package/{services → dist/services}/time-series.d.ts +0 -0
- /package/{styles → dist/styles}/_type.scss +0 -0
- /package/{styles → dist/styles}/components/_axis.scss +0 -0
- /package/{styles → dist/styles}/components/_callouts.scss +0 -0
- /package/{styles → dist/styles}/components/_grid-brush.scss +0 -0
- /package/{styles → dist/styles}/components/_highlights.scss +0 -0
- /package/{styles → dist/styles}/components/_layout.scss +0 -0
- /package/{styles → dist/styles}/components/_legend.scss +0 -0
- /package/{styles → dist/styles}/components/_modal.scss +0 -0
- /package/{styles → dist/styles}/components/_ruler.scss +0 -0
- /package/{styles → dist/styles}/components/_skeleton-lines.scss +0 -0
- /package/{styles → dist/styles}/components/_skeleton.scss +0 -0
- /package/{styles → dist/styles}/components/_threshold.scss +0 -0
- /package/{styles → dist/styles}/components/_title.scss +0 -0
- /package/{styles → dist/styles}/components/_toolbar.scss +0 -0
- /package/{styles → dist/styles}/components/_zero-line.scss +0 -0
- /package/{styles → dist/styles}/components/_zoom-bar.scss +0 -0
- /package/{styles → dist/styles}/components/diagrams/_marker.scss +0 -0
- /package/{styles → dist/styles}/components/index.scss +0 -0
- /package/{styles → dist/styles}/graphs/_area.scss +0 -0
- /package/{styles → dist/styles}/graphs/_bubble.scss +0 -0
- /package/{styles → dist/styles}/graphs/_choropleth.scss +0 -0
- /package/{styles → dist/styles}/graphs/_donut.scss +0 -0
- /package/{styles → dist/styles}/graphs/_line.scss +0 -0
- /package/{styles → dist/styles}/graphs/_lollipop.scss +0 -0
- /package/{styles → dist/styles}/graphs/_pie.scss +0 -0
- /package/{styles → dist/styles}/graphs/_scatter.scss +0 -0
- /package/{styles → dist/styles}/graphs/_treemap.scss +0 -0
- /package/{styles → dist/styles}/graphs/_wordcloud.scss +0 -0
- /package/{styles → dist/styles}/graphs/index.scss +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -167,8 +167,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
167
167
|
- **core:** keep tooltip hidden if legend truncation is set to none
|
|
168
168
|
([#1471](https://github.com/carbon-design-system/carbon-charts/issues/1471))
|
|
169
169
|
([1c5e555](https://github.com/carbon-design-system/carbon-charts/commit/1c5e555cfda85851ad9d394bcd13809d0605bcce)),
|
|
170
|
-
closes
|
|
171
|
-
[#1470](https://github.com/carbon-design-system/carbon-charts/issues/1470)
|
|
170
|
+
closes [#1470](https://github.com/carbon-design-system/carbon-charts/issues/1470)
|
|
172
171
|
|
|
173
172
|
## [1.6.1](https://github.com/carbon-design-system/carbon-charts/compare/v1.6.0...v1.6.1) (2022-10-20)
|
|
174
173
|
|
|
@@ -177,8 +176,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
177
176
|
- **core:** allow users to 'escape' axis tooltip in heatmap
|
|
178
177
|
([#1454](https://github.com/carbon-design-system/carbon-charts/issues/1454))
|
|
179
178
|
([d6873e2](https://github.com/carbon-design-system/carbon-charts/commit/d6873e21c2e2c2c663667b5d31575868cfacab19)),
|
|
180
|
-
closes
|
|
181
|
-
[#1453](https://github.com/carbon-design-system/carbon-charts/issues/1453)
|
|
179
|
+
closes [#1453](https://github.com/carbon-design-system/carbon-charts/issues/1453)
|
|
182
180
|
|
|
183
181
|
# [1.6.0](https://github.com/carbon-design-system/carbon-charts/compare/v1.5.8...v1.6.0) (2022-09-27)
|
|
184
182
|
|
|
@@ -199,8 +197,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
199
197
|
- **core:** add missing properties to AxisOptions interface
|
|
200
198
|
([#1432](https://github.com/carbon-design-system/carbon-charts/issues/1432))
|
|
201
199
|
([f88f310](https://github.com/carbon-design-system/carbon-charts/commit/f88f31000add77ba4affb78aa82276069d0f501a)),
|
|
202
|
-
closes
|
|
203
|
-
[#1413](https://github.com/carbon-design-system/carbon-charts/issues/1413)
|
|
200
|
+
closes [#1413](https://github.com/carbon-design-system/carbon-charts/issues/1413)
|
|
204
201
|
|
|
205
202
|
## [1.5.6](https://github.com/carbon-design-system/carbon-charts/compare/v1.5.5...v1.5.6) (2022-09-14)
|
|
206
203
|
|
|
@@ -214,12 +211,10 @@ All notable changes to this project will be documented in this file. See
|
|
|
214
211
|
|
|
215
212
|
### Bug Fixes
|
|
216
213
|
|
|
217
|
-
- **core:** display correct minimum in heatmap axis tooltip when there is
|
|
218
|
-
missing data
|
|
214
|
+
- **core:** display correct minimum in heatmap axis tooltip when there is missing data
|
|
219
215
|
([#1434](https://github.com/carbon-design-system/carbon-charts/issues/1434))
|
|
220
216
|
([33d1bcc](https://github.com/carbon-design-system/carbon-charts/commit/33d1bcce8b6e5c3312790a74da503a34a914467a)),
|
|
221
|
-
closes
|
|
222
|
-
[#1423](https://github.com/carbon-design-system/carbon-charts/issues/1423)
|
|
217
|
+
closes [#1423](https://github.com/carbon-design-system/carbon-charts/issues/1423)
|
|
223
218
|
|
|
224
219
|
## [1.5.3](https://github.com/carbon-design-system/carbon-charts/compare/v1.5.2...v1.5.3) (2022-09-06)
|
|
225
220
|
|
|
@@ -229,12 +224,10 @@ All notable changes to this project will be documented in this file. See
|
|
|
229
224
|
|
|
230
225
|
### Bug Fixes
|
|
231
226
|
|
|
232
|
-
- **core:** prevent toolbar buttons from being clicked if shouldBeDisabled
|
|
233
|
-
returns true
|
|
227
|
+
- **core:** prevent toolbar buttons from being clicked if shouldBeDisabled returns true
|
|
234
228
|
([#1429](https://github.com/carbon-design-system/carbon-charts/issues/1429))
|
|
235
229
|
([83aeb93](https://github.com/carbon-design-system/carbon-charts/commit/83aeb934d60d6db733311800eb3ecaad24be3753)),
|
|
236
|
-
closes
|
|
237
|
-
[#1424](https://github.com/carbon-design-system/carbon-charts/issues/1424)
|
|
230
|
+
closes [#1424](https://github.com/carbon-design-system/carbon-charts/issues/1424)
|
|
238
231
|
|
|
239
232
|
## [1.5.1](https://github.com/carbon-design-system/carbon-charts/compare/v1.5.0...v1.5.1) (2022-08-08)
|
|
240
233
|
|
|
@@ -259,8 +252,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
259
252
|
- **core:** allow theme to be set via options prop
|
|
260
253
|
([#1412](https://github.com/carbon-design-system/carbon-charts/issues/1412))
|
|
261
254
|
([6288548](https://github.com/carbon-design-system/carbon-charts/commit/62885487a700e2222d51f70aea790eddd5d6d086)),
|
|
262
|
-
closes
|
|
263
|
-
[#1411](https://github.com/carbon-design-system/carbon-charts/issues/1411)
|
|
255
|
+
closes [#1411](https://github.com/carbon-design-system/carbon-charts/issues/1411)
|
|
264
256
|
|
|
265
257
|
## [1.3.2](https://github.com/carbon-design-system/carbon-charts/compare/v1.3.1...v1.3.2) (2022-06-30)
|
|
266
258
|
|
|
@@ -269,8 +261,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
269
261
|
- **core:** remove dom-to-image dependency & add script to project
|
|
270
262
|
([#1403](https://github.com/carbon-design-system/carbon-charts/issues/1403))
|
|
271
263
|
([8dcd34b](https://github.com/carbon-design-system/carbon-charts/commit/8dcd34b00e804f666fa4a756f40d19233d516196)),
|
|
272
|
-
closes
|
|
273
|
-
[#1395](https://github.com/carbon-design-system/carbon-charts/issues/1395)
|
|
264
|
+
closes [#1395](https://github.com/carbon-design-system/carbon-charts/issues/1395)
|
|
274
265
|
|
|
275
266
|
## [1.3.1](https://github.com/carbon-design-system/carbon-charts/compare/v1.3.0...v1.3.1) (2022-06-28)
|
|
276
267
|
|
|
@@ -287,8 +278,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
287
278
|
- **core:** bar group time series
|
|
288
279
|
([#1398](https://github.com/carbon-design-system/carbon-charts/issues/1398))
|
|
289
280
|
([6ff1bb1](https://github.com/carbon-design-system/carbon-charts/commit/6ff1bb19ec95f5cd5da34ce8639fa9c079461d5f)),
|
|
290
|
-
closes
|
|
291
|
-
[#1396](https://github.com/carbon-design-system/carbon-charts/issues/1396)
|
|
281
|
+
closes [#1396](https://github.com/carbon-design-system/carbon-charts/issues/1396)
|
|
292
282
|
[#1373](https://github.com/carbon-design-system/carbon-charts/issues/1373)
|
|
293
283
|
|
|
294
284
|
## [1.2.1](https://github.com/carbon-design-system/carbon-charts/compare/v1.2.0...v1.2.1) (2022-06-14)
|
|
@@ -298,8 +288,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
298
288
|
- **core:** add aria-label attribute to toolbar container
|
|
299
289
|
([#1391](https://github.com/carbon-design-system/carbon-charts/issues/1391))
|
|
300
290
|
([9c38a76](https://github.com/carbon-design-system/carbon-charts/commit/9c38a764c08a2c2430ce72ac61b0e5e8aef54e74)),
|
|
301
|
-
closes
|
|
302
|
-
[#1390](https://github.com/carbon-design-system/carbon-charts/issues/1390)
|
|
291
|
+
closes [#1390](https://github.com/carbon-design-system/carbon-charts/issues/1390)
|
|
303
292
|
|
|
304
293
|
# [1.2.0](https://github.com/carbon-design-system/carbon-charts/compare/v1.1.0...v1.2.0) (2022-06-13)
|
|
305
294
|
|
|
@@ -312,8 +301,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
312
301
|
- **core:** add condition to check if domain is not undefined (between 0 & 0)
|
|
313
302
|
([#1386](https://github.com/carbon-design-system/carbon-charts/issues/1386))
|
|
314
303
|
([0938628](https://github.com/carbon-design-system/carbon-charts/commit/09386288ec2c6119b2c5d48d2821bf7a5e390c4f)),
|
|
315
|
-
closes
|
|
316
|
-
[#1385](https://github.com/carbon-design-system/carbon-charts/issues/1385)
|
|
304
|
+
closes [#1385](https://github.com/carbon-design-system/carbon-charts/issues/1385)
|
|
317
305
|
|
|
318
306
|
### Features
|
|
319
307
|
|
|
@@ -405,8 +393,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
405
393
|
- **core:** enable heatmap value domain to support small values
|
|
406
394
|
([#1325](https://github.com/carbon-design-system/carbon-charts/issues/1325))
|
|
407
395
|
([378845c](https://github.com/carbon-design-system/carbon-charts/commit/378845c040681e9a528357487cd60352777b95d3)),
|
|
408
|
-
closes
|
|
409
|
-
[#1321](https://github.com/carbon-design-system/carbon-charts/issues/1321)
|
|
396
|
+
closes [#1321](https://github.com/carbon-design-system/carbon-charts/issues/1321)
|
|
410
397
|
[#1326](https://github.com/carbon-design-system/carbon-charts/issues/1326)
|
|
411
398
|
|
|
412
399
|
## [0.54.13](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.12...v0.54.13) (2022-03-09)
|
|
@@ -428,8 +415,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
428
415
|
- **core:** render only the components that are being used in proportional meter
|
|
429
416
|
([#1273](https://github.com/carbon-design-system/carbon-charts/issues/1273))
|
|
430
417
|
([46715c0](https://github.com/carbon-design-system/carbon-charts/commit/46715c0f285897958fe2008beac391ae8ab8f779)),
|
|
431
|
-
closes
|
|
432
|
-
[#1262](https://github.com/carbon-design-system/carbon-charts/issues/1262)
|
|
418
|
+
closes [#1262](https://github.com/carbon-design-system/carbon-charts/issues/1262)
|
|
433
419
|
|
|
434
420
|
## [0.54.10](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.9...v0.54.10) (2022-01-27)
|
|
435
421
|
|
|
@@ -450,8 +436,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
450
436
|
- **core:** position bounds correctly in secondary axis of combo chart
|
|
451
437
|
([#1281](https://github.com/carbon-design-system/carbon-charts/issues/1281))
|
|
452
438
|
([ab9b8e9](https://github.com/carbon-design-system/carbon-charts/commit/ab9b8e90a0e128f6c9a185091d06e62c35e90042)),
|
|
453
|
-
closes
|
|
454
|
-
[#1253](https://github.com/carbon-design-system/carbon-charts/issues/1253)
|
|
439
|
+
closes [#1253](https://github.com/carbon-design-system/carbon-charts/issues/1253)
|
|
455
440
|
|
|
456
441
|
## [0.54.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.6...v0.54.7) (2022-01-13)
|
|
457
442
|
|
|
@@ -460,19 +445,16 @@ All notable changes to this project will be documented in this file. See
|
|
|
460
445
|
- **core:** prevent chart from breaking if thresholds array is empty
|
|
461
446
|
([#1267](https://github.com/carbon-design-system/carbon-charts/issues/1267))
|
|
462
447
|
([f566213](https://github.com/carbon-design-system/carbon-charts/commit/f566213ba4bc5c515f0a8da65a85dd14452186be)),
|
|
463
|
-
closes
|
|
464
|
-
[#1264](https://github.com/carbon-design-system/carbon-charts/issues/1264)
|
|
448
|
+
closes [#1264](https://github.com/carbon-design-system/carbon-charts/issues/1264)
|
|
465
449
|
|
|
466
450
|
## [0.54.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.5...v0.54.6) (2022-01-13)
|
|
467
451
|
|
|
468
452
|
### Bug Fixes
|
|
469
453
|
|
|
470
|
-
- **core:** prevent canvas zooming if depth equals 2 and canvas zoom property is
|
|
471
|
-
set to false
|
|
454
|
+
- **core:** prevent canvas zooming if depth equals 2 and canvas zoom property is set to false
|
|
472
455
|
([#1265](https://github.com/carbon-design-system/carbon-charts/issues/1265))
|
|
473
456
|
([1f42fe0](https://github.com/carbon-design-system/carbon-charts/commit/1f42fe09461c5ad9809ecb30d3642728284d021d)),
|
|
474
|
-
closes
|
|
475
|
-
[#1251](https://github.com/carbon-design-system/carbon-charts/issues/1251)
|
|
457
|
+
closes [#1251](https://github.com/carbon-design-system/carbon-charts/issues/1251)
|
|
476
458
|
|
|
477
459
|
## [0.54.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.4...v0.54.5) (2022-01-11)
|
|
478
460
|
|
|
@@ -481,19 +463,16 @@ All notable changes to this project will be documented in this file. See
|
|
|
481
463
|
- **core:** keep radar chart alignment after fullscreene exit
|
|
482
464
|
([#1249](https://github.com/carbon-design-system/carbon-charts/issues/1249))
|
|
483
465
|
([02eebb6](https://github.com/carbon-design-system/carbon-charts/commit/02eebb61ddc1ecfedb68a32cd15c82e428870a36)),
|
|
484
|
-
closes
|
|
485
|
-
[#1247](https://github.com/carbon-design-system/carbon-charts/issues/1247)
|
|
466
|
+
closes [#1247](https://github.com/carbon-design-system/carbon-charts/issues/1247)
|
|
486
467
|
|
|
487
468
|
## [0.54.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.3...v0.54.4) (2022-01-10)
|
|
488
469
|
|
|
489
470
|
### Bug Fixes
|
|
490
471
|
|
|
491
|
-
- **core:** prevent area chart from bleeding out of cartesian plane when
|
|
492
|
-
includeZero is enabled
|
|
472
|
+
- **core:** prevent area chart from bleeding out of cartesian plane when includeZero is enabled
|
|
493
473
|
([#1263](https://github.com/carbon-design-system/carbon-charts/issues/1263))
|
|
494
474
|
([62b6014](https://github.com/carbon-design-system/carbon-charts/commit/62b6014eea594d08572f71034eda8919c9e22100)),
|
|
495
|
-
closes
|
|
496
|
-
[#1248](https://github.com/carbon-design-system/carbon-charts/issues/1248)
|
|
475
|
+
closes [#1248](https://github.com/carbon-design-system/carbon-charts/issues/1248)
|
|
497
476
|
|
|
498
477
|
## [0.54.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.2...v0.54.3) (2022-01-07)
|
|
499
478
|
|
|
@@ -502,8 +481,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
502
481
|
- **stacked-bar:** set bar width based on number of domain values
|
|
503
482
|
([#1235](https://github.com/carbon-design-system/carbon-charts/issues/1235))
|
|
504
483
|
([758c064](https://github.com/carbon-design-system/carbon-charts/commit/758c064fcbf8f837da400af9bfac9862b2f20d1f)),
|
|
505
|
-
closes
|
|
506
|
-
[#1232](https://github.com/carbon-design-system/carbon-charts/issues/1232)
|
|
484
|
+
closes [#1232](https://github.com/carbon-design-system/carbon-charts/issues/1232)
|
|
507
485
|
|
|
508
486
|
## [0.54.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.54.1...v0.54.2) (2022-01-05)
|
|
509
487
|
|
|
@@ -517,8 +495,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
517
495
|
|
|
518
496
|
### Bug Fixes
|
|
519
497
|
|
|
520
|
-
- **core:** remove circular dependencies inheritance from heatmap legend &
|
|
521
|
-
canvas zoom files
|
|
498
|
+
- **core:** remove circular dependencies inheritance from heatmap legend & canvas zoom files
|
|
522
499
|
([#1260](https://github.com/carbon-design-system/carbon-charts/issues/1260))
|
|
523
500
|
([1abc4d9](https://github.com/carbon-design-system/carbon-charts/commit/1abc4d9ebf8ce80226df23371c4b9baa669f4c7f))
|
|
524
501
|
|
|
@@ -537,8 +514,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
537
514
|
- **core:** use domain in zoom bar if defined in axes
|
|
538
515
|
([#1243](https://github.com/carbon-design-system/carbon-charts/issues/1243))
|
|
539
516
|
([b265676](https://github.com/carbon-design-system/carbon-charts/commit/b2656764758d5b339987a59a2be344d0e94df4c2)),
|
|
540
|
-
closes
|
|
541
|
-
[#1228](https://github.com/carbon-design-system/carbon-charts/issues/1228)
|
|
517
|
+
closes [#1228](https://github.com/carbon-design-system/carbon-charts/issues/1228)
|
|
542
518
|
|
|
543
519
|
## [0.53.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.53.3...v0.53.4) (2021-12-13)
|
|
544
520
|
|
|
@@ -547,8 +523,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
547
523
|
- **core:** allow users to define custom buttons in toolbar
|
|
548
524
|
([#1158](https://github.com/carbon-design-system/carbon-charts/issues/1158))
|
|
549
525
|
([4996591](https://github.com/carbon-design-system/carbon-charts/commit/499659155b56df9f7ab03633e43f5437f21bb129)),
|
|
550
|
-
closes
|
|
551
|
-
[#1129](https://github.com/carbon-design-system/carbon-charts/issues/1129)
|
|
526
|
+
closes [#1129](https://github.com/carbon-design-system/carbon-charts/issues/1129)
|
|
552
527
|
|
|
553
528
|
## [0.53.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.53.2...v0.53.3) (2021-12-07)
|
|
554
529
|
|
|
@@ -557,8 +532,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
557
532
|
- **core:** fix overflow menu caused by data loading option change
|
|
558
533
|
([#1239](https://github.com/carbon-design-system/carbon-charts/issues/1239))
|
|
559
534
|
([48b2058](https://github.com/carbon-design-system/carbon-charts/commit/48b2058746d3d86675d1f979e7ea6839712bef65)),
|
|
560
|
-
closes
|
|
561
|
-
[#1229](https://github.com/carbon-design-system/carbon-charts/issues/1229)
|
|
535
|
+
closes [#1229](https://github.com/carbon-design-system/carbon-charts/issues/1229)
|
|
562
536
|
|
|
563
537
|
## [0.53.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.53.1...v0.53.2) (2021-12-06)
|
|
564
538
|
|
|
@@ -567,8 +541,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
567
541
|
- **core:** display respective combochart tooltips range label
|
|
568
542
|
([#1236](https://github.com/carbon-design-system/carbon-charts/issues/1236))
|
|
569
543
|
([a460ea3](https://github.com/carbon-design-system/carbon-charts/commit/a460ea3e1a695b6bf2b56f4401621d2853add8b6)),
|
|
570
|
-
closes
|
|
571
|
-
[#1085](https://github.com/carbon-design-system/carbon-charts/issues/1085)
|
|
544
|
+
closes [#1085](https://github.com/carbon-design-system/carbon-charts/issues/1085)
|
|
572
545
|
|
|
573
546
|
## [0.53.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.53.0...v0.53.1) (2021-12-02)
|
|
574
547
|
|
|
@@ -577,8 +550,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
577
550
|
- **core:** display the correct group when hovering over scatter point
|
|
578
551
|
([#1233](https://github.com/carbon-design-system/carbon-charts/issues/1233))
|
|
579
552
|
([dcb5357](https://github.com/carbon-design-system/carbon-charts/commit/dcb5357a470789bbdecb97a2f0fccfa999b0c837)),
|
|
580
|
-
closes
|
|
581
|
-
[#1188](https://github.com/carbon-design-system/carbon-charts/issues/1188)
|
|
553
|
+
closes [#1188](https://github.com/carbon-design-system/carbon-charts/issues/1188)
|
|
582
554
|
|
|
583
555
|
# [0.53.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.4...v0.53.0) (2021-12-01)
|
|
584
556
|
|
|
@@ -603,8 +575,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
603
575
|
- **core:** add linear gradient support to alluvial links
|
|
604
576
|
([#1192](https://github.com/carbon-design-system/carbon-charts/issues/1192))
|
|
605
577
|
([f2170b1](https://github.com/carbon-design-system/carbon-charts/commit/f2170b15b78797e0fcced2367b5b60c2b4e3a332)),
|
|
606
|
-
closes
|
|
607
|
-
[#1189](https://github.com/carbon-design-system/carbon-charts/issues/1189)
|
|
578
|
+
closes [#1189](https://github.com/carbon-design-system/carbon-charts/issues/1189)
|
|
608
579
|
|
|
609
580
|
## [0.52.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.0...v0.52.1) (2021-11-19)
|
|
610
581
|
|
|
@@ -613,8 +584,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
613
584
|
- **core:** set pointer events of highlight elements to none
|
|
614
585
|
([#1220](https://github.com/carbon-design-system/carbon-charts/issues/1220))
|
|
615
586
|
([5594054](https://github.com/carbon-design-system/carbon-charts/commit/5594054f791e4bd48b121104a3280e9934d90d6f)),
|
|
616
|
-
closes
|
|
617
|
-
[#1212](https://github.com/carbon-design-system/carbon-charts/issues/1212)
|
|
587
|
+
closes [#1212](https://github.com/carbon-design-system/carbon-charts/issues/1212)
|
|
618
588
|
|
|
619
589
|
# [0.52.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.51.4...v0.52.0) (2021-11-18)
|
|
620
590
|
|
|
@@ -643,8 +613,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
643
613
|
- **core:** improve keyboard accessibility
|
|
644
614
|
([#1208](https://github.com/carbon-design-system/carbon-charts/issues/1208))
|
|
645
615
|
([4f64327](https://github.com/carbon-design-system/carbon-charts/commit/4f64327f29dd23d73e4450a7f1cdda4d1d69d4e6)),
|
|
646
|
-
closes
|
|
647
|
-
[#1204](https://github.com/carbon-design-system/carbon-charts/issues/1204)
|
|
616
|
+
closes [#1204](https://github.com/carbon-design-system/carbon-charts/issues/1204)
|
|
648
617
|
|
|
649
618
|
## [0.51.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.51.0...v0.51.1) (2021-11-02)
|
|
650
619
|
|
|
@@ -653,8 +622,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
653
622
|
- **core:** render chart axis labels correctly when data loads async
|
|
654
623
|
([#1207](https://github.com/carbon-design-system/carbon-charts/issues/1207))
|
|
655
624
|
([f22e99b](https://github.com/carbon-design-system/carbon-charts/commit/f22e99b8145b476d7ba55ce8f9b00843cd98aa3c)),
|
|
656
|
-
closes
|
|
657
|
-
[#1135](https://github.com/carbon-design-system/carbon-charts/issues/1135)
|
|
625
|
+
closes [#1135](https://github.com/carbon-design-system/carbon-charts/issues/1135)
|
|
658
626
|
|
|
659
627
|
# [0.51.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.50.10...v0.51.0) (2021-11-01)
|
|
660
628
|
|
|
@@ -703,8 +671,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
703
671
|
- **core:** fix safari bug causing incorrect chart heights
|
|
704
672
|
([#1179](https://github.com/carbon-design-system/carbon-charts/issues/1179))
|
|
705
673
|
([55dd880](https://github.com/carbon-design-system/carbon-charts/commit/55dd880e48cb07c8f392ce2b9774e49ea4220051)),
|
|
706
|
-
closes
|
|
707
|
-
[#1177](https://github.com/carbon-design-system/carbon-charts/issues/1177)
|
|
674
|
+
closes [#1177](https://github.com/carbon-design-system/carbon-charts/issues/1177)
|
|
708
675
|
|
|
709
676
|
## [0.50.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.50.3...v0.50.4) (2021-10-05)
|
|
710
677
|
|
|
@@ -713,8 +680,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
713
680
|
- **core:** allow users to assign custom colors to the links of source nodes
|
|
714
681
|
([#1178](https://github.com/carbon-design-system/carbon-charts/issues/1178))
|
|
715
682
|
([bec1cc7](https://github.com/carbon-design-system/carbon-charts/commit/bec1cc736dec36fd8ed26a1ade1ac9f375e3849c)),
|
|
716
|
-
closes
|
|
717
|
-
[#1175](https://github.com/carbon-design-system/carbon-charts/issues/1175)
|
|
683
|
+
closes [#1175](https://github.com/carbon-design-system/carbon-charts/issues/1175)
|
|
718
684
|
|
|
719
685
|
## [0.50.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.50.2...v0.50.3) (2021-10-04)
|
|
720
686
|
|
|
@@ -739,8 +705,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
739
705
|
- **core:** remove overflow menu and modal imports in chart styles
|
|
740
706
|
([#1170](https://github.com/carbon-design-system/carbon-charts/issues/1170))
|
|
741
707
|
([4ca6839](https://github.com/carbon-design-system/carbon-charts/commit/4ca683928b8cea7c47b6e3f287b0fff9736eee5f)),
|
|
742
|
-
closes
|
|
743
|
-
[#1115](https://github.com/carbon-design-system/carbon-charts/issues/1115)
|
|
708
|
+
closes [#1115](https://github.com/carbon-design-system/carbon-charts/issues/1115)
|
|
744
709
|
|
|
745
710
|
## [0.49.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.49.6...v0.49.7) (2021-09-27)
|
|
746
711
|
|
|
@@ -749,8 +714,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
749
714
|
- **core:** optimize transition to not return new transition on root element
|
|
750
715
|
([#1169](https://github.com/carbon-design-system/carbon-charts/issues/1169))
|
|
751
716
|
([fe4d592](https://github.com/carbon-design-system/carbon-charts/commit/fe4d592991e9cbf68c4b9efab0be4aa46dfcd416)),
|
|
752
|
-
closes
|
|
753
|
-
[#1143](https://github.com/carbon-design-system/carbon-charts/issues/1143)
|
|
717
|
+
closes [#1143](https://github.com/carbon-design-system/carbon-charts/issues/1143)
|
|
754
718
|
|
|
755
719
|
## [0.49.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.49.5...v0.49.6) (2021-09-23)
|
|
756
720
|
|
|
@@ -759,8 +723,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
759
723
|
- **core:** correctly draw the threshold from multiple axes
|
|
760
724
|
([#1159](https://github.com/carbon-design-system/carbon-charts/issues/1159))
|
|
761
725
|
([1bba0d3](https://github.com/carbon-design-system/carbon-charts/commit/1bba0d38cc0b08fc56861d5923d1f7f3293e80a8)),
|
|
762
|
-
closes
|
|
763
|
-
[#1153](https://github.com/carbon-design-system/carbon-charts/issues/1153)
|
|
726
|
+
closes [#1153](https://github.com/carbon-design-system/carbon-charts/issues/1153)
|
|
764
727
|
|
|
765
728
|
## [0.49.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.49.4...v0.49.5) (2021-09-23)
|
|
766
729
|
|
|
@@ -781,8 +744,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
781
744
|
- **core:** replace empty hyperlink with an appropriate tag
|
|
782
745
|
([#1163](https://github.com/carbon-design-system/carbon-charts/issues/1163))
|
|
783
746
|
([5d0f75d](https://github.com/carbon-design-system/carbon-charts/commit/5d0f75d97656e85c858364a3cadc92ebe3dd6cc0)),
|
|
784
|
-
closes
|
|
785
|
-
[#952](https://github.com/carbon-design-system/carbon-charts/issues/952)
|
|
747
|
+
closes [#952](https://github.com/carbon-design-system/carbon-charts/issues/952)
|
|
786
748
|
|
|
787
749
|
## [0.49.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.49.1...v0.49.2) (2021-09-20)
|
|
788
750
|
|
|
@@ -803,8 +765,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
803
765
|
- **core:** create alluvial chart
|
|
804
766
|
([#1132](https://github.com/carbon-design-system/carbon-charts/issues/1132))
|
|
805
767
|
([08fa194](https://github.com/carbon-design-system/carbon-charts/commit/08fa194f1c59ab2110c0d221886fc0174c936194)),
|
|
806
|
-
closes
|
|
807
|
-
[#871](https://github.com/carbon-design-system/carbon-charts/issues/871)
|
|
768
|
+
closes [#871](https://github.com/carbon-design-system/carbon-charts/issues/871)
|
|
808
769
|
|
|
809
770
|
## [0.48.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.48.3...v0.48.4) (2021-09-13)
|
|
810
771
|
|
|
@@ -826,12 +787,10 @@ All notable changes to this project will be documented in this file. See
|
|
|
826
787
|
|
|
827
788
|
### Bug Fixes
|
|
828
789
|
|
|
829
|
-
- **core:** render an empty zoom bar holder when there is less than or equal to
|
|
830
|
-
1 data element
|
|
790
|
+
- **core:** render an empty zoom bar holder when there is less than or equal to 1 data element
|
|
831
791
|
([#1134](https://github.com/carbon-design-system/carbon-charts/issues/1134))
|
|
832
792
|
([9864cfd](https://github.com/carbon-design-system/carbon-charts/commit/9864cfd103a45ed8c8ca1605cb98a4cd10434fb2)),
|
|
833
|
-
closes
|
|
834
|
-
[#996](https://github.com/carbon-design-system/carbon-charts/issues/996)
|
|
793
|
+
closes [#996](https://github.com/carbon-design-system/carbon-charts/issues/996)
|
|
835
794
|
|
|
836
795
|
## [0.48.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.48.0...v0.48.1) (2021-09-13)
|
|
837
796
|
|
|
@@ -840,8 +799,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
840
799
|
- **core:** display donut-figure in the center when donut-title is empty
|
|
841
800
|
([#1147](https://github.com/carbon-design-system/carbon-charts/issues/1147))
|
|
842
801
|
([1d3dac5](https://github.com/carbon-design-system/carbon-charts/commit/1d3dac55d868306541ad6acd8205cce5a505dfe0)),
|
|
843
|
-
closes
|
|
844
|
-
[#1146](https://github.com/carbon-design-system/carbon-charts/issues/1146)
|
|
802
|
+
closes [#1146](https://github.com/carbon-design-system/carbon-charts/issues/1146)
|
|
845
803
|
|
|
846
804
|
# [0.48.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.47.0...v0.48.0) (2021-09-10)
|
|
847
805
|
|
|
@@ -866,8 +824,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
866
824
|
- **core:** filter out dots with missing value
|
|
867
825
|
([#1136](https://github.com/carbon-design-system/carbon-charts/issues/1136))
|
|
868
826
|
([c87bee8](https://github.com/carbon-design-system/carbon-charts/commit/c87bee87de7337a0b4a332d9a223ed3e3be92ab9)),
|
|
869
|
-
closes
|
|
870
|
-
[#1133](https://github.com/carbon-design-system/carbon-charts/issues/1133)
|
|
827
|
+
closes [#1133](https://github.com/carbon-design-system/carbon-charts/issues/1133)
|
|
871
828
|
|
|
872
829
|
## [0.46.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.46.3...v0.46.4) (2021-08-31)
|
|
873
830
|
|
|
@@ -876,8 +833,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
876
833
|
- **core:** display correct toolbar controls based on provided options
|
|
877
834
|
([#1127](https://github.com/carbon-design-system/carbon-charts/issues/1127))
|
|
878
835
|
([77e0e43](https://github.com/carbon-design-system/carbon-charts/commit/77e0e431c3c5c57eec3e49757747c1a7835f93de)),
|
|
879
|
-
closes
|
|
880
|
-
[#1109](https://github.com/carbon-design-system/carbon-charts/issues/1109)
|
|
836
|
+
closes [#1109](https://github.com/carbon-design-system/carbon-charts/issues/1109)
|
|
881
837
|
|
|
882
838
|
## [0.46.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.46.2...v0.46.3) (2021-08-31)
|
|
883
839
|
|
|
@@ -915,8 +871,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
915
871
|
- **core:** Add options to map value to other keys
|
|
916
872
|
([#1122](https://github.com/carbon-design-system/carbon-charts/issues/1122))
|
|
917
873
|
([1835192](https://github.com/carbon-design-system/carbon-charts/commit/18351924acc182c24a7467dfc989fdc1e5c759dc)),
|
|
918
|
-
closes
|
|
919
|
-
[#1110](https://github.com/carbon-design-system/carbon-charts/issues/1110)
|
|
874
|
+
closes [#1110](https://github.com/carbon-design-system/carbon-charts/issues/1110)
|
|
920
875
|
[#1110](https://github.com/carbon-design-system/carbon-charts/issues/1110)
|
|
921
876
|
[#1110](https://github.com/carbon-design-system/carbon-charts/issues/1110)
|
|
922
877
|
[#1110](https://github.com/carbon-design-system/carbon-charts/issues/1110)
|
|
@@ -1088,12 +1043,10 @@ All notable changes to this project will be documented in this file. See
|
|
|
1088
1043
|
|
|
1089
1044
|
### Bug Fixes
|
|
1090
1045
|
|
|
1091
|
-
- **core:** display the first and last data elements when addSpaceOnEdges is set
|
|
1092
|
-
to 0
|
|
1046
|
+
- **core:** display the first and last data elements when addSpaceOnEdges is set to 0
|
|
1093
1047
|
([#1064](https://github.com/carbon-design-system/carbon-charts/issues/1064))
|
|
1094
1048
|
([f321807](https://github.com/carbon-design-system/carbon-charts/commit/f32180774720c7d916f6bd441b7d72500b77e7f9)),
|
|
1095
|
-
closes
|
|
1096
|
-
[#763](https://github.com/carbon-design-system/carbon-charts/issues/763)
|
|
1049
|
+
closes [#763](https://github.com/carbon-design-system/carbon-charts/issues/763)
|
|
1097
1050
|
|
|
1098
1051
|
## [0.41.80](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.79...v0.41.80) (2021-07-07)
|
|
1099
1052
|
|
|
@@ -1107,8 +1060,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
1107
1060
|
|
|
1108
1061
|
### Bug Fixes
|
|
1109
1062
|
|
|
1110
|
-
- **core:** keep fill colors if custom getIsFilled is passed on mouse over for
|
|
1111
|
-
line graph
|
|
1063
|
+
- **core:** keep fill colors if custom getIsFilled is passed on mouse over for line graph
|
|
1112
1064
|
([#1055](https://github.com/carbon-design-system/carbon-charts/issues/1055))
|
|
1113
1065
|
([b5dac70](https://github.com/carbon-design-system/carbon-charts/commit/b5dac70c919475672ee31c59cf542605db68e5b4))
|
|
1114
1066
|
|
|
@@ -1165,8 +1117,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
1165
1117
|
- **core:** fix circlepacks with one dataset
|
|
1166
1118
|
([#1035](https://github.com/carbon-design-system/carbon-charts/issues/1035))
|
|
1167
1119
|
([2f0b183](https://github.com/carbon-design-system/carbon-charts/commit/2f0b183878b650c76b05ca6d5fb1e8f6a17c0266)),
|
|
1168
|
-
closes
|
|
1169
|
-
[#1031](https://github.com/carbon-design-system/carbon-charts/issues/1031)
|
|
1120
|
+
closes [#1031](https://github.com/carbon-design-system/carbon-charts/issues/1031)
|
|
1170
1121
|
- **core:** make sure tooltips are properly positioned when closer to the edges
|
|
1171
1122
|
([#1037](https://github.com/carbon-design-system/carbon-charts/issues/1037))
|
|
1172
1123
|
([a8d13cd](https://github.com/carbon-design-system/carbon-charts/commit/a8d13cd6d90813161582a00afa5166ca87702f38))
|
|
@@ -1434,8 +1385,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
1434
1385
|
- **types:** add peak, status properties to MeterChartOptions interface
|
|
1435
1386
|
([#924](https://github.com/carbon-design-system/carbon-charts/issues/924))
|
|
1436
1387
|
([ffff193](https://github.com/carbon-design-system/carbon-charts/commit/ffff19380e391fc603600e2630f7bb583a6a335b)),
|
|
1437
|
-
closes
|
|
1438
|
-
[#920](https://github.com/carbon-design-system/carbon-charts/issues/920)
|
|
1388
|
+
closes [#920](https://github.com/carbon-design-system/carbon-charts/issues/920)
|
|
1439
1389
|
|
|
1440
1390
|
## [0.41.22](https://github.com/carbon-design-system/carbon-charts/compare/v0.41.21...v0.41.22) (2021-01-15)
|
|
1441
1391
|
|
|
@@ -1556,8 +1506,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
1556
1506
|
- **core:** correct axis title paddings in y-axes
|
|
1557
1507
|
([#873](https://github.com/carbon-design-system/carbon-charts/issues/873))
|
|
1558
1508
|
([8a27a5f](https://github.com/carbon-design-system/carbon-charts/commit/8a27a5f65cbc55a878e603c9aa96c6f38d6ea10d)),
|
|
1559
|
-
closes
|
|
1560
|
-
[#859](https://github.com/carbon-design-system/carbon-charts/issues/859)
|
|
1509
|
+
closes [#859](https://github.com/carbon-design-system/carbon-charts/issues/859)
|
|
1561
1510
|
|
|
1562
1511
|
# Change Log
|
|
1563
1512
|
|
|
@@ -1571,8 +1520,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
1571
1520
|
- use fill:none to allow transparent toolbar control background
|
|
1572
1521
|
([#858](https://github.com/carbon-design-system/carbon-charts/issues/858))
|
|
1573
1522
|
([e4bf1bf](https://github.com/carbon-design-system/carbon-charts/commit/e4bf1bf45f59b5a4521aa2b6e5856715f148b1d5))
|
|
1574
|
-
- **core:** only set zoombar data and sanitize date values if a cartesian
|
|
1575
|
-
time-series chart
|
|
1523
|
+
- **core:** only set zoombar data and sanitize date values if a cartesian time-series chart
|
|
1576
1524
|
([88c8fa1](https://github.com/carbon-design-system/carbon-charts/commit/88c8fa1feee0d8866608bc39426638afb1c81294))
|
|
1577
1525
|
|
|
1578
1526
|
### Features
|
|
@@ -1652,8 +1600,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
1652
1600
|
- **core:** fix Legend and Tooltip group color
|
|
1653
1601
|
([#834](https://github.com/carbon-design-system/carbon-charts/issues/834))
|
|
1654
1602
|
([da4c9f4](https://github.com/carbon-design-system/carbon-charts/commit/da4c9f4d5da605f19db87fde9ab4caa45056373d)),
|
|
1655
|
-
closes
|
|
1656
|
-
[#828](https://github.com/carbon-design-system/carbon-charts/issues/828)
|
|
1603
|
+
closes [#828](https://github.com/carbon-design-system/carbon-charts/issues/828)
|
|
1657
1604
|
[#828](https://github.com/carbon-design-system/carbon-charts/issues/828)
|
|
1658
1605
|
|
|
1659
1606
|
### Features
|
|
@@ -1833,8 +1780,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
1833
1780
|
|
|
1834
1781
|
### Bug Fixes
|
|
1835
1782
|
|
|
1836
|
-
- fix pie chart alignment
|
|
1837
|
-
([#716](https://github.com/carbon-design-system/carbon-charts/issues/716))
|
|
1783
|
+
- fix pie chart alignment ([#716](https://github.com/carbon-design-system/carbon-charts/issues/716))
|
|
1838
1784
|
([638c331](https://github.com/carbon-design-system/carbon-charts/commit/638c331b7fa8fbc73cf557cf99a6b3af2435b492))
|
|
1839
1785
|
|
|
1840
1786
|
# Change Log
|
|
@@ -1858,8 +1804,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
1858
1804
|
|
|
1859
1805
|
### Bug Fixes
|
|
1860
1806
|
|
|
1861
|
-
- **core, react, angular, vue, svelte:** render both vertical and horizontal
|
|
1862
|
-
thresholds
|
|
1807
|
+
- **core, react, angular, vue, svelte:** render both vertical and horizontal thresholds
|
|
1863
1808
|
([#706](https://github.com/carbon-design-system/carbon-charts/issues/706))
|
|
1864
1809
|
([90f55d2](https://github.com/carbon-design-system/carbon-charts/commit/90f55d247f7535467eacca3477d75980e4c0e25f))
|
|
1865
1810
|
|
|
@@ -2068,8 +2013,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
2068
2013
|
|
|
2069
2014
|
- **core:** update import path carbon-components
|
|
2070
2015
|
([e9fca73](https://github.com/carbon-design-system/carbon-charts/commit/e9fca73cd3768b1b85247a2798908c26da99216b)),
|
|
2071
|
-
closes
|
|
2072
|
-
[#546](https://github.com/carbon-design-system/carbon-charts/issues/546)
|
|
2016
|
+
closes [#546](https://github.com/carbon-design-system/carbon-charts/issues/546)
|
|
2073
2017
|
|
|
2074
2018
|
## [0.30.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.30.5...v0.30.6) (2020-03-30)
|
|
2075
2019
|
|
|
@@ -2106,8 +2050,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
2106
2050
|
|
|
2107
2051
|
- **core:** Add configuration option to not include 0 on axes
|
|
2108
2052
|
([44d51de](https://github.com/carbon-design-system/carbon-charts/commit/44d51ded6af78d57a848d68e093fe69858405594))
|
|
2109
|
-
- **core:** Axes configuration options defaultable, Add option to not include 0
|
|
2110
|
-
on axes
|
|
2053
|
+
- **core:** Axes configuration options defaultable, Add option to not include 0 on axes
|
|
2111
2054
|
([03969c3](https://github.com/carbon-design-system/carbon-charts/commit/03969c319248064cf1c1ef6eb79ec534aa04c972))
|
|
2112
2055
|
|
|
2113
2056
|
## [0.29.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.29.7...v0.29.8) (2020-03-03)
|
|
@@ -2130,8 +2073,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
2130
2073
|
|
|
2131
2074
|
### Bug Fixes
|
|
2132
2075
|
|
|
2133
|
-
- **core:** Tools.getProperty did return 'null' for falsy values, now returns
|
|
2134
|
-
the actual values
|
|
2076
|
+
- **core:** Tools.getProperty did return 'null' for falsy values, now returns the actual values
|
|
2135
2077
|
([3b78c3a](https://github.com/carbon-design-system/carbon-charts/commit/3b78c3a27d4551e7d7b51f911ea2f7e0f155ef42))
|
|
2136
2078
|
|
|
2137
2079
|
## [0.29.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.29.2...v0.29.3) (2020-02-20)
|
|
@@ -2232,8 +2174,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
2232
2174
|
|
|
2233
2175
|
### Features
|
|
2234
2176
|
|
|
2235
|
-
- **core:** add event dispatches for mouseover, mousemove, click & mouseout for
|
|
2236
|
-
all graphs
|
|
2177
|
+
- **core:** add event dispatches for mouseover, mousemove, click & mouseout for all graphs
|
|
2237
2178
|
([284012c](https://github.com/carbon-design-system/carbon-charts/commit/284012c))
|
|
2238
2179
|
|
|
2239
2180
|
# [0.25.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.24.5...v0.25.0) (2020-01-10)
|
|
@@ -2244,8 +2185,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
2244
2185
|
|
|
2245
2186
|
### Bug Fixes
|
|
2246
2187
|
|
|
2247
|
-
- **core:** fix to allow chart to toggle on and off using attribute/css
|
|
2248
|
-
properties
|
|
2188
|
+
- **core:** fix to allow chart to toggle on and off using attribute/css properties
|
|
2249
2189
|
([77e26af](https://github.com/carbon-design-system/carbon-charts/commit/77e26af))
|
|
2250
2190
|
|
|
2251
2191
|
## [0.24.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.24.3...v0.24.4) (2020-01-06)
|
|
@@ -2311,8 +2251,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
2311
2251
|
|
|
2312
2252
|
### Features
|
|
2313
2253
|
|
|
2314
|
-
- **core, angular, react, vue:** allow customizations to pie labels & the donut
|
|
2315
|
-
center number
|
|
2254
|
+
- **core, angular, react, vue:** allow customizations to pie labels & the donut center number
|
|
2316
2255
|
([#427](https://github.com/carbon-design-system/carbon-charts/issues/427))
|
|
2317
2256
|
([0446045](https://github.com/carbon-design-system/carbon-charts/commit/0446045))
|
|
2318
2257
|
|
|
@@ -2379,9 +2318,8 @@ All notable changes to this project will be documented in this file. See
|
|
|
2379
2318
|
|
|
2380
2319
|
### Bug Fixes
|
|
2381
2320
|
|
|
2382
|
-
- **core, react, angular, vue:** default width & height to 100%, and call
|
|
2383
|
-
|
|
2384
|
-
([db251b4](https://github.com/carbon-design-system/carbon-charts/commit/db251b4))
|
|
2321
|
+
- **core, react, angular, vue:** default width & height to 100%, and call setOptions on option
|
|
2322
|
+
change ([db251b4](https://github.com/carbon-design-system/carbon-charts/commit/db251b4))
|
|
2385
2323
|
|
|
2386
2324
|
## [0.16.23](https://github.com/carbon-design-system/carbon-charts/compare/v0.16.22...v0.16.23) (2019-10-25)
|
|
2387
2325
|
|
|
@@ -2644,9 +2582,8 @@ All notable changes to this project will be documented in this file. See
|
|
|
2644
2582
|
|
|
2645
2583
|
### Bug Fixes
|
|
2646
2584
|
|
|
2647
|
-
- **core:** remove suffixes to use regular module resolution, and force publish
|
|
2648
|
-
|
|
2649
|
-
([#229](https://github.com/carbon-design-system/carbon-charts/issues/229))
|
|
2585
|
+
- **core:** remove suffixes to use regular module resolution, and force publish all packages with
|
|
2586
|
+
every release ([#229](https://github.com/carbon-design-system/carbon-charts/issues/229))
|
|
2650
2587
|
([2e33ca6](https://github.com/carbon-design-system/carbon-charts/commit/2e33ca6))
|
|
2651
2588
|
|
|
2652
2589
|
## [0.11.6](https://github.com/carbon-design-system/carbon-charts/compare/v0.11.5...v0.11.6) (2019-03-26)
|
|
@@ -2685,8 +2622,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
2685
2622
|
### Bug Fixes
|
|
2686
2623
|
|
|
2687
2624
|
- **core:** remove updateSVG()
|
|
2688
|
-
([38f7e83](https://github.com/carbon-design-system/carbon-charts/commit/38f7e83)),
|
|
2689
|
-
closes
|
|
2625
|
+
([38f7e83](https://github.com/carbon-design-system/carbon-charts/commit/38f7e83)), closes
|
|
2690
2626
|
[#185](https://github.com/carbon-design-system/carbon-charts/issues/185)
|
|
2691
2627
|
|
|
2692
2628
|
## [0.10.2](https://github.com/carbon-design-system/carbon-charts/compare/v0.10.1...v0.10.2) (2019-03-06)
|
|
@@ -2709,8 +2645,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
2709
2645
|
### Features
|
|
2710
2646
|
|
|
2711
2647
|
- **\$core:** Adds getStrokeColor and getFillColor options
|
|
2712
|
-
([e1766d3](https://github.com/carbon-design-system/carbon-charts/commit/e1766d3)),
|
|
2713
|
-
closes
|
|
2648
|
+
([e1766d3](https://github.com/carbon-design-system/carbon-charts/commit/e1766d3)), closes
|
|
2714
2649
|
[#136](https://github.com/carbon-design-system/carbon-charts/issues/136)
|
|
2715
2650
|
|
|
2716
2651
|
## [0.9.7](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.6...v0.9.7) (2019-02-22)
|
|
@@ -2728,9 +2663,8 @@ All notable changes to this project will be documented in this file. See
|
|
|
2728
2663
|
|
|
2729
2664
|
### Bug Fixes
|
|
2730
2665
|
|
|
2731
|
-
- **\$core:** Fixes opacity transitions not completing when data is updated.
|
|
2732
|
-
|
|
2733
|
-
([f6b245e](https://github.com/carbon-design-system/carbon-charts/commit/f6b245e))
|
|
2666
|
+
- **\$core:** Fixes opacity transitions not completing when data is updated. Ensures use SVG vs CSS
|
|
2667
|
+
op ([f6b245e](https://github.com/carbon-design-system/carbon-charts/commit/f6b245e))
|
|
2734
2668
|
|
|
2735
2669
|
## [0.9.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.9.3...v0.9.4) (2019-02-16)
|
|
2736
2670
|
|
|
@@ -2772,8 +2706,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
2772
2706
|
### Bug Fixes
|
|
2773
2707
|
|
|
2774
2708
|
- **\$browser:** Fixes the issue with pie labels not lining up on smaller sizes.
|
|
2775
|
-
([154467f](https://github.com/carbon-design-system/carbon-charts/commit/154467f)),
|
|
2776
|
-
closes
|
|
2709
|
+
([154467f](https://github.com/carbon-design-system/carbon-charts/commit/154467f)), closes
|
|
2777
2710
|
[#151](https://github.com/carbon-design-system/carbon-charts/issues/151)
|
|
2778
2711
|
- **\$browser:** Use dynamic step value for margin instead of fixed value.
|
|
2779
2712
|
([1c96d7a](https://github.com/carbon-design-system/carbon-charts/commit/1c96d7a))
|
|
@@ -2785,8 +2718,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
2785
2718
|
### Bug Fixes
|
|
2786
2719
|
|
|
2787
2720
|
- **\$browser:** Fixes the issue with pie labels not lining up on smaller sizes.
|
|
2788
|
-
([54e2227](https://github.com/carbon-design-system/carbon-charts/commit/54e2227)),
|
|
2789
|
-
closes
|
|
2721
|
+
([54e2227](https://github.com/carbon-design-system/carbon-charts/commit/54e2227)), closes
|
|
2790
2722
|
[#151](https://github.com/carbon-design-system/carbon-charts/issues/151)
|
|
2791
2723
|
|
|
2792
2724
|
## [0.8.4](https://github.com/carbon-design-system/carbon-charts/compare/v0.8.3...v0.8.4) (2019-01-17)
|
|
@@ -2819,8 +2751,8 @@ All notable changes to this project will be documented in this file. See
|
|
|
2819
2751
|
### Features
|
|
2820
2752
|
|
|
2821
2753
|
- **\$core:** adds support for tension, beta, alpha in curves
|
|
2822
|
-
([09437dc](https://github.com/carbon-design-system/carbon-charts/commit/09437dc)),
|
|
2823
|
-
|
|
2754
|
+
([09437dc](https://github.com/carbon-design-system/carbon-charts/commit/09437dc)), closes
|
|
2755
|
+
[#39](https://github.com/carbon-design-system/carbon-charts/issues/39)
|
|
2824
2756
|
|
|
2825
2757
|
## [0.7.16](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.15...v0.7.16) (2019-01-03)
|
|
2826
2758
|
|
|
@@ -2848,8 +2780,8 @@ All notable changes to this project will be documented in this file. See
|
|
|
2848
2780
|
|
|
2849
2781
|
### Bug Fixes
|
|
2850
2782
|
|
|
2851
|
-
- **core:** Use a minimum size for all charts, and use resizeObserver rather
|
|
2852
|
-
|
|
2783
|
+
- **core:** Use a minimum size for all charts, and use resizeObserver rather than
|
|
2784
|
+
requestAnimationFra
|
|
2853
2785
|
([462c2d6](https://github.com/carbon-design-system/carbon-charts/commit/462c2d6))
|
|
2854
2786
|
|
|
2855
2787
|
## [0.7.8](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.7...v0.7.8) (2018-11-22)
|
|
@@ -2857,8 +2789,8 @@ All notable changes to this project will be documented in this file. See
|
|
|
2857
2789
|
### Bug Fixes
|
|
2858
2790
|
|
|
2859
2791
|
- **core:** Remove and update addDataPointEventListener
|
|
2860
|
-
([f40f775](https://github.com/carbon-design-system/carbon-charts/commit/f40f775)),
|
|
2861
|
-
|
|
2792
|
+
([f40f775](https://github.com/carbon-design-system/carbon-charts/commit/f40f775)), closes
|
|
2793
|
+
[#97](https://github.com/carbon-design-system/carbon-charts/issues/97)
|
|
2862
2794
|
|
|
2863
2795
|
## [0.7.5](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.4...v0.7.5) (2018-11-20)
|
|
2864
2796
|
|
|
@@ -2869,8 +2801,8 @@ All notable changes to this project will be documented in this file. See
|
|
|
2869
2801
|
### Bug Fixes
|
|
2870
2802
|
|
|
2871
2803
|
- **packages/core/src/line-chart.ts:** Fix tooltips bug
|
|
2872
|
-
[#89](https://github.com/carbon-design-system/carbon-charts/issues/89): Fix
|
|
2873
|
-
|
|
2804
|
+
[#89](https://github.com/carbon-design-system/carbon-charts/issues/89): Fix imports and
|
|
2805
|
+
addDataPointEventListene
|
|
2874
2806
|
([5a63f94](https://github.com/carbon-design-system/carbon-charts/commit/5a63f94))
|
|
2875
2807
|
|
|
2876
2808
|
## [0.7.3](https://github.com/carbon-design-system/carbon-charts/compare/v0.7.2...v0.7.3) (2018-11-13)
|
|
@@ -2905,8 +2837,8 @@ All notable changes to this project will be documented in this file. See
|
|
|
2905
2837
|
### Bug Fixes
|
|
2906
2838
|
|
|
2907
2839
|
- **\$core:** Remove hover effect and pointer on non-clickable legends
|
|
2908
|
-
([dc9a2f2](https://github.com/carbon-design-system/carbon-charts/commit/dc9a2f2)),
|
|
2909
|
-
|
|
2840
|
+
([dc9a2f2](https://github.com/carbon-design-system/carbon-charts/commit/dc9a2f2)), closes
|
|
2841
|
+
[#71](https://github.com/carbon-design-system/carbon-charts/issues/71)
|
|
2910
2842
|
|
|
2911
2843
|
## [0.6.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.6.0...v0.6.1) (2018-11-09)
|
|
2912
2844
|
|
|
@@ -2959,8 +2891,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
2959
2891
|
|
|
2960
2892
|
- **core:** legend updates in pie & donut should respect legend filters
|
|
2961
2893
|
([203c7e6](https://github.com/carbon-design-system/carbon-charts/commit/203c7e6))
|
|
2962
|
-
- **core:** use correct default colors, and replace loading bee with carbon
|
|
2963
|
-
loading spinner
|
|
2894
|
+
- **core:** use correct default colors, and replace loading bee with carbon loading spinner
|
|
2964
2895
|
([80ff9bd](https://github.com/carbon-design-system/carbon-charts/commit/80ff9bd))
|
|
2965
2896
|
|
|
2966
2897
|
### Features
|
|
@@ -3029,8 +2960,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
3029
2960
|
|
|
3030
2961
|
- **core angular react:** fix tooltip styling
|
|
3031
2962
|
([80b36f5](https://github.com/carbon-design-system/carbon-charts/commit/80b36f5))
|
|
3032
|
-
- **peretz-icons:** show peretz-icons instead of raw SVG for tooltip close
|
|
3033
|
-
button
|
|
2963
|
+
- **peretz-icons:** show peretz-icons instead of raw SVG for tooltip close button
|
|
3034
2964
|
([19a54d4](https://github.com/carbon-design-system/carbon-charts/commit/19a54d4))
|
|
3035
2965
|
- **scope angular react:** use a more specific class name for chart tooltips
|
|
3036
2966
|
([4cbe680](https://github.com/carbon-design-system/carbon-charts/commit/4cbe680))
|
|
@@ -3042,8 +2972,7 @@ All notable changes to this project will be documented in this file. See
|
|
|
3042
2972
|
- **core react angular:** carbon styling
|
|
3043
2973
|
([5064f63](https://github.com/carbon-design-system/carbon-charts/commit/5064f63))
|
|
3044
2974
|
- **react wrappers storybook:** full react wrappers
|
|
3045
|
-
([4a456ee](https://github.com/carbon-design-system/carbon-charts/commit/4a456ee)),
|
|
3046
|
-
closes
|
|
2975
|
+
([4a456ee](https://github.com/carbon-design-system/carbon-charts/commit/4a456ee)), closes
|
|
3047
2976
|
[#117](https://github.com/carbon-design-system/carbon-charts/issues/117)
|
|
3048
2977
|
[#115](https://github.com/carbon-design-system/carbon-charts/issues/115)
|
|
3049
2978
|
[#120](https://github.com/carbon-design-system/carbon-charts/issues/120)
|