apexcharts 5.7.1 → 5.8.1
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 +2 -2
- package/dist/apexcharts.common.js +1 -1
- package/dist/apexcharts.esm.js +1 -1
- package/dist/apexcharts.js +1 -1
- package/dist/apexcharts.min.js +1 -1
- package/dist/apexcharts.ssr.common.js +1 -1
- package/dist/apexcharts.ssr.esm.js +1 -1
- package/dist/bar.common.js +1 -1
- package/dist/bar.esm.js +1 -1
- package/dist/candlestick.common.js +1 -1
- package/dist/candlestick.esm.js +1 -1
- package/dist/core.common.js +5 -0
- package/dist/core.esm.js +19859 -0
- package/dist/features/all.common.js +5 -0
- package/dist/features/all.esm.js +22855 -0
- package/dist/features/annotations.common.js +5 -0
- package/dist/features/annotations.esm.js +20640 -0
- package/dist/features/exports.common.js +5 -0
- package/dist/features/exports.esm.js +20242 -0
- package/dist/features/keyboard.common.js +5 -0
- package/dist/features/keyboard.esm.js +20524 -0
- package/dist/features/legend.common.js +5 -0
- package/dist/features/legend.esm.js +19860 -0
- package/dist/features/toolbar.common.js +5 -0
- package/dist/features/toolbar.esm.js +21410 -0
- package/dist/heatmap.common.js +1 -1
- package/dist/heatmap.esm.js +1 -1
- package/dist/line.common.js +1 -1
- package/dist/line.esm.js +1 -1
- package/dist/pie.common.js +1 -1
- package/dist/pie.esm.js +1 -1
- package/dist/radial.common.js +1 -1
- package/dist/radial.esm.js +1 -1
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -129,7 +129,7 @@ By default `import ApexCharts from 'apexcharts'` includes everything. If you wan
|
|
|
129
129
|
import ApexCharts from 'apexcharts/core' // bare class — no chart types, no features
|
|
130
130
|
|
|
131
131
|
// Chart types
|
|
132
|
-
import 'apexcharts/line' // line, area, scatter, bubble
|
|
132
|
+
import 'apexcharts/line' // line, area, scatter, bubble, rangeArea
|
|
133
133
|
import 'apexcharts/bar' // bar, column
|
|
134
134
|
// import 'apexcharts/pie' // pie, donut
|
|
135
135
|
// import 'apexcharts/radial' // radialBar, radar
|
|
@@ -144,7 +144,7 @@ import 'apexcharts/features/toolbar' // zoom/pan toolbar
|
|
|
144
144
|
// import 'apexcharts/features/keyboard' // keyboard navigation
|
|
145
145
|
```
|
|
146
146
|
|
|
147
|
-
See [https://apexcharts.com/docs/tree-shaking/
|
|
147
|
+
See [tree-shaking](https://apexcharts.com/docs/tree-shaking/) for the full guide.
|
|
148
148
|
|
|
149
149
|
### A little more than the basic
|
|
150
150
|
|