SVG终端有选项mouse
,可以通过点击密钥中的相应条目来隐藏/显示曲线。
现在,我正在两次绘制我的数据。一次with steps
和with points
一次。虽然这些点使值更改时更清晰,但这些步骤可以更清楚地表明值的有效期。密钥每个数据只有一个条目。
所以我的脚本看起来像这样:
plot\
"Data1" title "first" with steps linetype 1,\
"Data1" notitle with points linetype 1,\
"Data2" title "second" with steps linetype 2,\
"Data2" notitle with points linetype 2,\
...
我的问题是:是否有方便的方法将两个地块切换到一起?我能想到的唯一方法是重写javascript函数,它会改变曲线的可见性。