We are working on an SSRS report that shows the successes and failures of a user process over the course of a day.
We were asked for a line chart showing the various times of day with a line for success and a line for failure. This is the set up we have.
The X axis needs to be time of the given day in question. How can I make the X Axis display the hours of a single day. The day itself is supplied as a parameter in the report.
This is the current field we are using to group the X axis and that is the time of day = Hour(Fields!BookingRequestInitiatedDate.Value)
- when the success or failure occurred. This is how we are displaying it =Format(Fields!BookingRequestInitiatedDate.Value,"hh:mm tt")
But this isn't giving me what I need.
The Y Axis is the counter of events. This I have working correctly.
The X axis needs to be the timed intervals over the course of a given day.
*Ideally with a marker creating intervals every 2-3 hour intervals. For example 8 am, 10 am, 12 pm ... etc.
Also only start and end when there is data in the chart - in other words if nothing happening between 12 am and 8 am don't show those hours.*