yech1990 opened a new issue #13144:
URL: https://github.com/apache/incubator-echarts/issues/13144
### What problem does this feature solve?
Draw the links in a customized order.
### What does the proposed API look like?
```javascript
option = {
series: {
type: 'sankey',
layout: 'none',
focusNodeAdjacency: 'allEdges',
data: [{
name: 'a'
}, {
name: 'b1'
}, {
name: 'b2'
}],
links: [{
source: 'a',
target: 'b2',
value: 5
}, {
source: 'a',
target: 'b1',
value: 3
}]
}
};
```
Instead of readering the sankey plot automatically, I would like to
customize the order of the links.
```
a ----- b1
a
a------ b2
```
```
a-- --b1
a x
a-- --b2
```
<!-- This issue is generated by echarts-issue-helper. DO NOT REMOVE -->
<!-- This issue is in English. DO NOT REMOVE -->
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]