I have a program that outputs a graph with a semester date on the x-axis and the starting point is flexible, depends on a global.
Now I want the x-axis labels to be adjusted automatically but I am finding it hard to work with dates in locals.
Suppose I have some
How can I use this to get something like
but with proper date formatting?
Now I want the x-axis labels to be adjusted automatically but I am finding it hard to work with dates in locals.
Suppose I have some
Code:
global start 2004h1
Code:
xlabel(1 "$start" 2 "${start}+1" ...)

Comment