Replies: 2 comments 1 reply
-
Looks like I broke this in one of my commits adding code history support to the Grapher. I needed to be able to call To work with this new structure, I access the DataFrame inside the plot functions using |
Beta Was this translation helpful? Give feedback.
-
I figured something needed more flexibility and/or multiple calls. In regards to line, this works fine, but for the bar plot, |
Beta Was this translation helpful? Give feedback.
-
When I implemented symbols for lines, I relied on what was already there, namely "data_frame" in kwargs. This was defined in
on_dragger_finished
askwargs = {"data_frame": df}
in grapher.py.In the current develop branch, I see kwargs is now
kwargs = {}
inon_dragger_finished
. Nothing else sets it.I'm not sure if that was needed for some other part of the code, but this break:
Maybe that was an artifact of a merge? Trying to figure out wheter that is the bug, or if we need to fix line and bar in a different way, or is there something else missing somewhere else.
Figured I'd start a discussion instead of a bug, cause I don't know exactly how to formulate the bug report. Also not sure what section I should put this in, so I'm putting it in Q&A
Beta Was this translation helpful? Give feedback.
All reactions