Example (draws circles whose area is proportional to the value in column 3):
set style fill transparent solid 0.2 noborder
plot 'data' using 1:2:(sqrt($3)) with circles, \
'data' using 1:2 with linespoints
The result is similar to using a points plot with variable size points and
pointstyle 6, except that the circles will scale with the x axis range.
See also set object circle (p.
) and fillstyle (p.
).