grafanimate
grafanimate copied to clipboard
Zoom page content
I originally sent ctrl+ to browser to zoom, but the screenshot unzooms so I found this method instead.
window size and zoom factor should be provided as options obviously...
Yes support would be fantastic thank you!
I've had a lot of feedback that people couldn't read the text when posting widescreen videos on X/Twitter, and given the styling/studio settings do not work this is my solution which works quite well. I'm not even sure of the expected result from the styling as I've not seen it work...
-
An outstanding issue from feedback is that the labels on the X axis jump around. Just changing dateformat probably improves it, it annoyingly can only be set globally via grafana.ini and it messes up my normal use of grafana.
-
I also hacked timeutils.py to suit my needs which also needs to be made an option.
def get_freq_delta(every: str) -> RecurrenceInfo:
rr_interval = 4
rr_freq = HOURLY
delta = timedelta(days=30) # - timedelta(seconds=1)
return RecurrenceInfo(every=every, frequency=rr_freq, interval=rr_interval, duration=delta)
Not sure your usecase was for timeseries panels? Or I may have misunderstood the options. But this was ideal for me to set step size and time range shown.