Cusy
Cusy

Reputation: 243

Increase width and heigth of gnuplot output

I've to plot 180000 points into a single EPS file. With standards gnuplot output dimensions points are too close each other and that's makes them indistinguible. Is there any way to increase the image width and height?

Upvotes: 5

Views: 7597

Answers (1)

andyras
andyras

Reputation: 15910

Yes.

set terminal epscairo enhanced color size 100in,100in font "Arial,100"

This will make (for example) an .eps 100 inches by 100 inches with a large font. You can type

help terminal pdfcairo

at the gnuplot command line for more information.

Upvotes: 6

Related Questions