How to set time on x-axis of a bar graph?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to make a graph that has the x-axis labels a full 24 hour period. I
have data points at random times during the day and I want to express that in
the graph. For example, if I have 5 at 7:00, 2 at 7:40, and 3 at 11:00, I
want it to show that the 5 and 2 are closer together than the 9, for example
that there were more occurances at 7, none between then, and 1 at 11:00?
 
In a bar (or column) chart, the x-axis is a <category> axis not a numeric
one. This means the x-values are treated as text and each is equally spaced
from the other.
You might consider an XY chart with 100% negative y-axis error bars.
Or look at Jon's waterfall charts: www.peltiertech.com
best wishes
 
Back
Top