如何更改箭头的颜色

mah*_*ood 3 gnuplot

看来此命令无法更改箭头的颜色

set arrow from 22,1590 to 523,1090 lw 3   back  lc rgb "blue" filled
Run Code Online (Sandbox Code Playgroud)

但是我明白了

duplicated arguments in style specification
Run Code Online (Sandbox Code Playgroud)

它指向的开始filled

为什么?

Chr*_*oph 5

通常,参数的顺序在gnuplot中无关紧要,不幸的是,它确实如此。使用

set arrow from 22,1590 to 523,1090 filled back lw 3 lc rgb "blue"
Run Code Online (Sandbox Code Playgroud)