Apache ECharts Custom Series

Clone this repo:

Branches

  1. 4ee4e94 Merge pull request #6 from apache/dev by Wenli Zhang · 2 days ago main
  2. 9859c85 chore: release all by Ovilia · 2 days ago dev
  3. 1a86a35 Merge pull request #5 from apache/dev by Wenli Zhang · 3 days ago
  4. 74f3405 chore: release contour by Ovilia · 3 days ago
  5. 797a382 Merge pull request #4 from apache/dev by Wenli Zhang · 3 days ago

echarts-custom-series

This repo provides some custom series for Apache ECharts. The minial supported version is Apache ECharts v6, which is not released yet.

List of Custom Series

violin
violin
contour
contour
stage
stage
segmentedDoughnut
segmentedDoughnut
barRange
barRange
lineRange
lineRange

See the README in the above links about how to install and use.

Develop

npm install

Create A New Custom Series

npm run generate <series-name>

The generated files are in custom-series/<series-name>. Note that if there are multiple words in the series name, they should be in camel case like npm run generate barRange.

Build

Each of the directories in custom-series/ is a custom series.

Build All

npm run build

Build One

npm run build <series-name>

For example, to build custom-series/violin, run:

npm run build violin

Generate Thumbnails

npm run thumbnail
# or
npm run thumbnail <series-name>