My data table looks like this:
Product TimeOfSale
Shirt 5/2/13 5:00:00.000 PM
Shirt 5/2/13 6:00:00.000 PM
Slacks 5/2/13 6:00:00.000 PM
Jacket 5/2/13 7:00:00.000 PM
Slacks 5/2/13 8:00:00.000 PM
How would I create a Scatter Plot (or some chart) where distinct products are listed on the Y-Axis and Time_Of_Sale is the X-Axis. I need a tick mark plotted for each Product for the appropriate TimeOfSale.
Essentially, I need something like:
Shirt x x
Slacks x x
Jacket x
5pm 6pm 7pm 8pm
Thanks, Tom