kivy-garden / graph

Displays plots on a graph.
MIT License
50 stars 18 forks source link

Axis tick labels? #13

Open stevemsmith opened 6 years ago

stevemsmith commented 6 years ago

I've only found one semi-reference to this here:

https://github.com/kivy-garden/garden.matplotlib/blob/842629a6f13bb9187fc91222f3e259c594f7a77c/examples/test_backend.py

What I really need is the ability to customize the x-axis labels of the graph. I'm plotting elapsed time-series data. Sampling data 10 times per second, and need the x-axis to reflect "seconds". Currently I'm plotting with "enumerate" which means my first data point is at x=1, then x=2 and so on.

Thanks for any advice!