builder-7000
builder-7000

Reputation: 7627

Plot point size not changing

As mentioned in this answer the ps setting can be used to change the point size of a plot:

plot "./points.dat" using 1:2 pt 7 ps 10     # small point size
plot "./points.dat" using 1:2 pt 7 ps 100    # large point size

However ps seems to be ignored when using a character point type:

plot "./points.dat" using 1:2 pt "X" ps 10     # small point size
plot "./points.dat" using 1:2 pt "X" ps 100    # small point size

How to change the point size for character point types like "X"?

Upvotes: 0

Views: 75

Answers (1)

theozh
theozh

Reputation: 25714

Try this:

plot '+' u 1:1 w p pt "X" font ",10"
plot '+' u 1:1 w p pt "X" font ",100"

Upvotes: 1

Related Questions