I am trying to display a timechart on a line graph. The timechart looks back 24 hours to find specific events. My issue is that the line graph sets the minimum x-axis as the first event found in the time range and the maximum as the last event found.
How do I set the x-axis bounds of the line graph such that the line graph displays the entire time range?
Edit**
I can't give the full search string but the timechart pipe looks like this.
timechart fixedrange=true span=5m Count(Notice) as Count by Notice
Essentially there are events with a field called "Notice" and I'm just counting them in 5 minute intervals and making a timechart.
To reiterate with an example, I have found a time range with only one event that matches the criteria to be in the timechart. The timechart does not display the entire time range but just that one point.
... View more