在gnuplot
中使用Octave
时,我无法删除图表的边框(边框线)。通常,box off
可以解决问题,但是只有gnuplot上边框和右边框上的刻度线消失,但线条本身仍然存在。它适用于fltk
和qt
以下是使用
解决问题的示意图graphics_toolkit gnuplot
%graphics_toolkit qt
hist(rand(1,1000))
box off
%box on
我尝试了hax=gca; set(hax,'Box','off')
更长的方式,结果相同。
答案 0 :(得分:2)
这是一个错误。 以octave-3.8.2和octave-4.0.0-rc3再现。
这似乎与older thread密切相关,其中未发出unset border
gnuplot命令。
确实在
之后graphics_toolkit gnuplot
hist(rand(1,1000))
box off
drawnow ("png", "debug.png", false, "debug.gp")
debug.gp文件中有多个border
命令。
Search on the bug tracker表明尚未报告此情况。 请file a bug report,并提供问题的链接。