Question: How do I plot these values?

I have a set of data. The number of times an event occurred each day. So my data set looks like, [[daynum, numevents]] == [[1,3],[2,1],[3,5],...] where daynum is the day number, and numevents is the number of times an event occurred that day. What I want to do is plot these like a histogram, or barchart, or column graph (I'm not very good at stats, so I may not know what I'm talking about here) - anyway, something like that - with daynum on the horizontal axis and numevents on the vertical axis. And the numevent should be a tall rectangle with height = numevent value. I've tried all three of those above, histogram, barchart, and column graph, but my data-set isn't what's wanted for those plot types. If you can understand how I want my data plotted, can you tell me how I can do that ?
Please Wait...