Correct way to straighten smoothed lines for ThemeRiver chart (question)
See original GitHub issueDescription
Echarts has great chart type ThemeRiver (also known as streamgraph) but this type has no options smooth
or smoothMonotone
like in other chart types. It does not allow to straighten the lines.
I found (probably) place in code where this options inlined but it cannot be changed from official API. Rewrite this code directly will cause a problem with the future updates.
What problem does this feature solve?
Smooth lines in charts need for best looking but when you need greater accuracy the only way — to straighten the lines.
What does the proposed API look like?
The best option to do as in other types of diagrams:
Workaround
Is there possible to overload the process
function without changes source code? Something like the plugin or extension API. Maybe I can intercept the lines drawing …
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (1 by maintainers)
Top Results From Across the Web
Correct way to straighten smoothed lines for ThemeRiver chart ...
What problem does this feature solve? Smooth lines in charts need for best looking but when you need greater accuracy the only way...
Read more >When you use a smoothed line chart, your data is not ... - VizWiz
Let's first take a look at some examples to see how badly the data can be distorted. The first chart is obviously the...
Read more >How to smooth the angles of line chart in Excel? - ExtendOffice
1. Right click the series you need, and select Format Data Series in the context menu. See screenshot: · 2. In the Format...
Read more >Assessing the Readability of Stacked Graphs | InnoVis
The four evaluated techniques: stacked area chart (STACK), ThemeRiver (THEME), streamgraph (STREAM), and ThemeRiver with interactive baseline straightening (INT) ...
Read more >Smoothing Out Data Series - Charts - Excel Ribbon Tips
Select the Smoothed Line check box. Click on OK. The steps are slightly different in Excel 2013 and later versions: In your chart,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I was in a hurry and took the side of darkness - fixed it in the source 🤦 But it’s was really fast, take a look on micro changes. https://gist.github.com/creadone/d91447c21429d7a96e26415ba4e55f0c/revisions
@creadone Thank you so much for that and for being so fast to reply! Really appreciate it 👍