I am using gracebat of xmgrace to generate bar graphs using the following batch script.
s0 line type 0
S0 SYMBOL COLOR 4
S0 SYMBOL FILL 1
s0 type BAR
## Bar fill. Only 1 (black) is available.
S0 FILL WITH COLOR
S0 FILL COLOR 3
## Outline width.
S0 SYMBOL LINEWIDTH 2
# options for image output
WORLD XMIN 0
WORLD YMIN 0
PAGE SIZE 800, 600
The first issue that sometimes the script automatically sets the 0.5 spacing on X, while I need always 1. Here is the example:
How I could eliminate those unused 0.5 spacings via some option in my batch file?
The second problem (again on X axis): sometimes the graph cover wider range of values on 2 without any of data:
Is it possible to automatically limit XMAX according to the initial dataset (but without its seting manualy in batch script since I apply it to different xvg files)?

