Normally don't have problem with setting x tics but this one's defying solution for me.
Plotting some values along a daily time series, so leading off with the commands
set xdata time
set timefmt "%m/%d/%Y" # the incoming dates are like 06/19/2016
set format x "%b %Y" # I want the tics to be like Jun 2016
I have an arrow as a marker in the plot
set arrow 1 from "10/15/2016", 0 to "10/15/2016", 4
...so I have a vertical line exactly on Oct 15 2016.
But with the command for my xtics...
set xtics "10/15/2016", 2628000
...I should have xtics beginning on Oct 15 and occurring at roughly the 15th of each month. Problem is, the first xtic shows up about where Oct 1st is, not the 15th. Subsequently, the spacing is indeed about one month, but they're all near the first of each month, not the 15th.
The arrow is just to give me a visual marker on the date Oct 15, and its command uses the same format as the xtics command. After an hour of no luck with every configuration I can think of, it's time to go external for a fresh set of eyes.