We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f74e8c1 commit d9832a2Copy full SHA for d9832a2
gnuplot.lua
@@ -803,10 +803,13 @@ function gnuplot.figprint(fname)
803
writeToCurrent('set term ' .. _gptable[_gptable.current].term .. ' ' .. _gptable.current .. '\n')
804
end
805
806
-function gnuplot.figure(n)
+function gnuplot.figure(n, config)
807
+ config = config or {}
808
local gp = getfigure(n)
809
- writeToCurrent('raise')
810
+ if not config.noraise then
811
+ writeToCurrent('raise')
812
+ end
813
return _gptable.current
814
815
0 commit comments