Gnuplot – Increase size of point only in legend/key

gnuplot

I have a graph that looks like this:

image

I want to increase the size of the points in the legend (is it legend or key?) but without increasing the size of the points in the plot.
It's explained better in the picture. Can this be achieved?

Best Answer

First plot nothing with increased symbol size, then plot the data without the key.

gnuplot> plot 1/0 ls 7 lw 6 with points t "0.0", "yourdata" ls 7 notitle

Use the same point style for both of the plots, and rename the first plot key as you wish.

Related Topic