lowdefy/packages/blocks/blocksECharts
2021-05-31 12:39:32 +02:00
..
demo feat(blockECharts): Add EChart block 🎁. 2021-03-24 10:37:10 +02:00
src fix(blocksECharts): Correct the remoteEntry path for ECharts. 2021-03-24 14:58:52 +02:00
tests feat(blockECharts): Add EChart block 🎁. 2021-03-24 10:37:10 +02:00
.babelrc feat(blockECharts): Add EChart block 🎁. 2021-03-24 10:37:10 +02:00
CHANGELOG.md chore: Release version 3.16.5 2021-05-31 12:39:32 +02:00
jest.config.js feat(blockECharts): Add EChart block 🎁. 2021-03-24 10:37:10 +02:00
package.json chore: Release version 3.16.5 2021-05-31 12:39:32 +02:00
README.md chore: Release version v3.12.3 2021-03-26 14:42:53 +02:00
webpack.common.js chore: Add clean-webpack-plugin to webpack configs. 2021-05-18 15:28:45 +02:00
webpack.demo.js feat(blockECharts): Add EChart block 🎁. 2021-03-24 10:37:10 +02:00
webpack.dev.js feat(blockECharts): Add EChart block 🎁. 2021-03-24 10:37:10 +02:00
webpack.prod.js fix(blocksECharts): Correct the remoteEntry path for ECharts. 2021-03-24 14:58:52 +02:00

Lowdefy ECharts Blocks

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.

EChart Example

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

Other Lowdefy Blocks Packages

More Lowdefy resources

Licence

Apache-2.0