How do I use the kivy module garden.graph
inside the kv file? I only found documentation that explained how to use it in the main python script.
I imported the kivy.garden.graph
in the python file, and I can add the Graph
inside the kv file, but I didn't find any documentation how to set the size, plots etc.
Graph:
id: graph_test
plot: MeshLinePlot
this gives an error since MeshLinePlot is not defined
, though I imported it on the python side.
any help would be highly appreciated, maybe we could then add this info to the graph's github readme as well.