packages/plugins/blocks/blocks-echarts/README.md
Lowdefy blocks for Apache ECharts, is a feature rich javascript charting library.
The implementation of these blocks is a minimal wrapper for the echarts-for-react package. This means you write normal EChart config to create charts.
See the Apache ECharts docs for the chart settings API.
name: my-app
lowdefy: 3.12.3
pages:
- id: dashboard
type: PageHeaderMenu
blocks:
- id: line
type: EChart
properties:
height: 600
option:
xAxis:
type: category
data:
- Mon
- Tue
- Wed
- Thu
- Fri
- Sat
- Sun
yAxis:
type: value
series:
- data:
- 150
- 230
- 224
- 218
- 135
- 147
- 260
type: line