Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!news.glorb.com!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail From: Jaya Newsgroups: comp.graphics.apps.gnuplot Subject: How to display time as IST(GMT+5:30hr) instead of GMT Date: Thu, 5 Jul 2012 00:27:10 -0700 (PDT) Organization: http://groups.google.com Lines: 21 Message-ID: <234e20a4-b8fc-4a8f-907c-b54e11e1d2e1@googlegroups.com> NNTP-Posting-Host: 59.185.105.29 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: posting.google.com 1341473310 7531 127.0.0.1 (5 Jul 2012 07:28:30 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 5 Jul 2012 07:28:30 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=59.185.105.29; posting-account=e-SaBwgAAABz5162ExNWjomPzVIwEY5o User-Agent: G2/1.0 Xref: csiph.com comp.graphics.apps.gnuplot:1241 Hi everybody, I am using canvas terminal to plot a graph with X axis as Time axis. I am using the following code: set terminal canvas standalone mousing; set output 'outfile.html' set xdata time set timefmt "%s" set format x "%H:%M" plot 'file.txt' using $1:$2 The graph is plotted correctly, but the mousebox displays: x Wed, 04 Jul 2012 06:04:05 GMT y 248.1 Instead I want it to display: x Wed, 04 Jul 2012 11:34:05 IST y 248.1 How can this be done?