From: Ethan M. <merritt@u.washington.edu> - 2009-02-12 20:56:12
|
On Thursday 12 February 2009 12:33:16 Sebastian Pająk wrote: > Hello > > When I resize manually plot window, all points in the plotting > function become much bigger, even if I'm acctualy decreasing the size > of the window. When I'm sizing window again the points remain with > incorrect size. It can be seen in "test" window also. Is it a bug in > windows terminal? The points are drawn at an arbitrary size, and you cannot expect that size to be consistent across terminals. Furthermore, the size of the point itself is independent of the current size of the canvas (I think, anyhow, it is possible that there are some terminal types for which this is not true). There are two alternatives which give you more control over the scaling of the plotting symbols, allowing the size to be on some absolute scale relative to the plot axes or to the canvas size. 4.2 or 4.3: Use "with labels" rather than "with points", and control the size of the symbol by changing the font size. An extreme example is here: http://skuld.bmsc.washington.edu/people/merritt/gnuplot/index.html#variable_label_size 4.3 only: Use "plot ... with circles", which allows you to give the radius of each circle in either axis coordinates or absolute sizes. Demo here: http://gnuplot.sourceforge.net/demo_4.3/circles.html -- Ethan A Merritt |