update code

main
haha 2024-07-11 00:03:18 +08:00
parent abc1a392b1
commit cbb51b9f67
1 changed files with 2 additions and 2 deletions

View File

@ -16,11 +16,11 @@ class FlowLinkModel extends PolylineEdgeModel {
getEdgeAnimationStyle() {
let tmps=this.graphModel.edges.filter(d=>d.targetNodeId==this.sourceNodeId||d.sourceNodeId==this.sourceNodeId);
const colors=["#d34836","#0f9d58","#ff7f0e","#2ec2b3","#24799e","#7fba00","#4A148C","#1E88E5","#827717","#4E342E"] ;
const colors=["#d34836","#0f9d58","#ff7f0e","#2ec2b3","#24799e","#7fba00","#4A148C","#1E88E5","#827717","#4E342E","#212121","#76FF03","#004D40","#2962FF","#283593"] ;
const style = super.getEdgeAnimationStyle();
style.strokeDasharray = "5 5";
style.stroke=colors[tmps.indexOf(this)];
style.stroke=colors[tmps.indexOf(this)%colors.length];
style.animationDuration = "60s";
return style;
}