apexcharts 3.51.0 → 3.53.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/README.md +0 -16
- package/dist/apexcharts.amd.js +1 -1
- package/dist/apexcharts.common.js +4 -4
- package/dist/apexcharts.css +0 -7
- package/dist/apexcharts.esm.js +4 -4
- package/dist/apexcharts.js +642 -500
- package/dist/apexcharts.min.js +4 -4
- package/package.json +6 -2
- package/src/apexcharts.js +21 -5
- package/src/assets/apexcharts.css +0 -7
- package/src/charts/BarStacked.js +5 -4
- package/src/charts/BoxCandleStick.js +18 -19
- package/src/charts/Treemap.js +14 -10
- package/src/charts/common/bar/DataLabels.js +39 -25
- package/src/charts/common/bar/Helpers.js +1 -1
- package/src/charts/common/treemap/Helpers.js +13 -5
- package/src/modules/Exports.js +83 -67
- package/src/modules/Fill.js +23 -16
- package/src/modules/Filters.js +2 -2
- package/src/modules/Range.js +50 -42
- package/src/modules/Scales.js +118 -88
- package/src/modules/Series.js +71 -52
- package/src/modules/ZoomPanSelection.js +94 -5
- package/src/modules/annotations/Annotations.js +6 -3
- package/src/modules/axes/Grid.js +12 -3
- package/src/modules/dimensions/Dimensions.js +1 -1
- package/src/modules/helpers/InitCtxVariables.js +5 -2
- package/src/modules/helpers/UpdateHelpers.js +1 -0
- package/src/modules/legend/Helpers.js +26 -22
- package/src/modules/legend/Legend.js +2 -10
- package/src/modules/settings/Globals.js +1 -0
- package/src/modules/settings/Options.js +5 -9
- package/src/modules/tooltip/Intersect.js +0 -9
- package/src/modules/tooltip/Labels.js +13 -4
- package/src/modules/tooltip/Tooltip.js +16 -12
- package/src/utils/Utils.js +14 -27
- package/types/apexcharts.d.ts +7 -7
package/README.md
CHANGED
|
@@ -24,12 +24,6 @@
|
|
|
24
24
|
|
|
25
25
|
<br />
|
|
26
26
|
|
|
27
|
-
## Browsers support
|
|
28
|
-
|
|
29
|
-
| [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png" alt="Firefox" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br/>Firefox | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png" alt="Chrome" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br/>Chrome | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png" alt="Safari" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br/>Safari | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt="Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br/> Edge | [<img src="https://user-images.githubusercontent.com/17712401/124668393-30772d00-de87-11eb-9360-3199c3b68b95.png" alt="IE" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br/> IE11 |
|
|
30
|
-
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
31
|
-
| 31+ ✔ | 35+ ✔ | 6+ ✔ | Edge ✔ | [(IE11)](#using-it-with-ie11) ✔ |
|
|
32
|
-
|
|
33
27
|
## Download and Installation
|
|
34
28
|
|
|
35
29
|
##### Installing via npm
|
|
@@ -180,16 +174,6 @@ apexcharts/
|
|
|
180
174
|
└── samples/
|
|
181
175
|
```
|
|
182
176
|
|
|
183
|
-
## Using it with IE11
|
|
184
|
-
|
|
185
|
-
If you need to make it work with IE11, you need to include these polyfills before including ApexCharts
|
|
186
|
-
|
|
187
|
-
- [promise-polyfill](https://cdn.jsdelivr.net/npm/promise-polyfill@8/dist/polyfill.min.js)
|
|
188
|
-
- [classlist.js](https://cdn.jsdelivr.net/npm/eligrey-classlist-js-polyfill)
|
|
189
|
-
- [ResizeObserver polyfill](https://cdn.jsdelivr.net/npm/@juggle/resize-observer)
|
|
190
|
-
- [findIndex](https://cdn.jsdelivr.net/npm/findindex_polyfill_mdn) - You will need this only if you require timeline/rangebar charts
|
|
191
|
-
- [canvg](https://unpkg.com/canvg@3.0.4/lib/umd.js) - You will need this only if you require PNG download of your charts
|
|
192
|
-
|
|
193
177
|
## Development
|
|
194
178
|
|
|
195
179
|
#### Install dependencies and run the project
|