Closed WaffleLapkin closed 1 month ago
I have encountered the same problem. Have you found a solution yet?
No
I found a workaround locally. Turns out it's related to progressive rendering being 'broken' for SSR mode. Similar to this filed issue: https://github.com/apache/echarts/issues/18788
I was changing echarts versions(up to 5.5.0) and modifying that source locally and found that disabling progressive by changing to these lines(don't recall the original values currently):
`
// Configuration for progressive/incremental rendering
progressiveThreshold: 0,
progressive: 0,
` the system finally printed all of the points.
What would be helpful would be taking the above reproduction, and then generating a version that can be used to file the issue with echarts, should be able to get this sorted upstream easily.
Reproducer:
Result:
Expected result (a screenshot from html page made by
HtmlRenderer
):