Path: csiph.com!news.mixmin.net!weretis.net!feeder1.news.weretis.net!news.solani.org!.POSTED!not-for-mail From: Karl Ratzsch Newsgroups: comp.graphics.apps.gnuplot Subject: Re: An exact diagonal Date: Tue, 29 Mar 2016 13:05:11 +0200 Organization: solani.org Lines: 26 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Trace: solani.org 1459249510 29493 eJwNyckNACEMA8CWIM5ZTgjr/ktYfiONwbdPqJur0agCSt+1Lrun1PeJ97FEiU/K2GfqIZGdwA8gJRED (29 Mar 2016 11:05:10 GMT) X-Complaints-To: abuse@news.solani.org NNTP-Posting-Date: Tue, 29 Mar 2016 11:05:10 +0000 (UTC) User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.6.0 X-User-ID: eJwNxMkBwDAIA7CVMDW0jMMR9h8h1UP2OLxfujltbSkOCeYpyD8R2yWI+rLFOOlVsewZVczRCxdeEXE= In-Reply-To: Cancel-Lock: sha1:d/EnzuSuE5pX7LwBw1WjvE9mJGE= X-NNTP-Posting-Host: eJwFwQcBwEAIBDBLrGPIAfr4l9AE6uwb5nDD4aYyJK8agebeS7Hw4btXIwr6ctr0VRAvZfwb3BDi Xref: csiph.com comp.graphics.apps.gnuplot:3268 Am 24.03.2016 um 12:34 schrieb pez: > set term wxt size 300,300 title "wxt 300x300" ... > - > but, in this way, we get an 1-pixel-down wxt subdiagonal, > instead of an exact win diagonal. Yes, known bug. https://sourceforge.net/p/gnuplot/bugs/1759/ But at least there is no jitter in the line. Point is, i don't understand what exactly you want to achieve. Who cares, on the interactive desktop terminal, if the output is exactly 300x300 pixel wide? If you want a bitmap file for further use in another program, OK. But with the png terminal it works perfectly. set term png size 300,300 set margins 0,0,0,0 unset border unset tics set samples 151 set out "test.png" plot [0:300] x lc '#ff0000' with dots notitle set out