Re: most optimized line chart

2021-11-07 Thread Yi Shen
Hi, Store data in a static TypedArray may reduce the memory pressure and improve the performance significantly. For example: const data = new Float32Array(1e6 * 2); for (let i = 0; i < 1e6; i++) { data[i * 2] = x data[i * 2 + 1] = y } option = { series: [{ type: 'line', data:

[GitHub] [echarts-handbook] plainheart opened a new pull request #23: chore: add more strategies for generating contributors.

2021-11-07 Thread GitBox
plainheart opened a new pull request #23: URL: https://github.com/apache/echarts-handbook/pull/23 Currently, we are generating the contributors from the git log. It's fast but there are some drawbacks, 1. The git username may not be consistent with GitHub account name. e.g.