I have the simple 2D graphs in the following format:
@ title "No tittle"
@ xaxis label "Water Index"
@ yaxis label "Occupancy"
@TYPE xy
22710 1147
24183 3
25029 1198
30513 671
33768 1
44475 69
45612 235
46023 57
47028 34
49080 839
5079 681
5082 597
5085 385
5088 1149
5091 1179
5097 505
51315 1
While printing that staff via XMGRACE I obtain a curved image (see the picture) instead of good-looking 2D Bar plots that is easy to obtain via excel.
Is it possible to modify the format of the file in order to improve its visualization quality (e.g. making a bar or pie plots for such kind of data) for the XMGRACE?
EDIT: the batch file with the following options is provided for each XVG file in order to print it as png
READ NXY "here is the path to XVG"
s0 line color 4
PRINT TO "where to save png"
HARDCOPY DEVICE \"PNG\"
PAGE SIZE 450, 300
DEVICE \"PNG\" FONT ANTIALIASING on
DEVICE \"PNG\" OP \"compression:9\"
#DEVICE \"PNG\" OP \"transparent:on\"
xaxis label char size 2.50000
yaxis label char size 2.50000
xaxis ticklabel char size 2.500000
yaxis ticklabel char size 2.500000
PRINT
Thanks in advance!
Gleb