@particle-academy/fancy-echarts 2.0.0 → 2.0.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/docs/EChart3D.md +7 -1
- package/package.json +1 -1
package/docs/EChart3D.md
CHANGED
|
@@ -8,7 +8,13 @@
|
|
|
8
8
|
import { EChart3D } from "@particle-academy/fancy-echarts";
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
`echarts-gl` is
|
|
11
|
+
`echarts-gl` is an **optional peer dependency** as of fancy-echarts 2.0 — install it alongside fancy-echarts when you use 3D charts:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install echarts-gl
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
The GL engine is dynamically loaded on first render of an `EChart3D`, so consumers that never use 3D charts pay nothing.
|
|
12
18
|
|
|
13
19
|
## Base Component
|
|
14
20
|
|