Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

changing gnuplot graph window name

Tags:

gnuplot

I am writing a program that runs on windows that uses Gnuplot to generate dynamic graphs. I need to have multiple graphs running at the same time, so I have multiple threads running different instances of Gnuplot. My problem is that they all have the same title for their graph windows, specifically they all say Gnuplot (window id:0). Is there a way to change this value in Gnuplot?

like image 801
Jake Gearhart Avatar asked Sep 05 '13 18:09

Jake Gearhart


1 Answers

Well, this is awkward, but I just found the solution 5 minutes after posting this. I might as well put up my solution in case it helps anybody else.

I just had to use the command:

set term wxt title 'my title'

where my title is whatever title you want to use.

like image 135
Jake Gearhart Avatar answered Sep 30 '22 07:09

Jake Gearhart