gnuplot horizontal space before first line point and after last

前端 未结 1 1308
失恋的感觉
失恋的感觉 2020-12-21 18:57

using: gnuplot 4.2 patchlevel 6

I am plotting candlesticks. The first and last data points are, of course, on the left and right Y axis bars. The first and last ca

1条回答
  •  醉梦人生
    2020-12-21 19:24

    That's what set offsets is for: Add some offsets to gnuplots autoscaled range:

    Without offsets (this is your case):

    $data <

    With offsets in x-direction:

    $data <

    As you can see, you get offsets at the left and right plot margins. However, the margin's size isn't 0.1 in units of the first axis, but the value is rounded to the next auto-generated tic.

    To work around this, you can add set autoscale xfix:

    $data <

    0 讨论(0)
提交回复
热议问题