Editable graphs? #134
Replies: 1 comment 1 reply
-
|
Hey @sapiogenesis! What a badass.. 🙂 Awesome use-case :) There's no observable layer currently. You control the render cycle. You mutate your data e.g., We are incrementally appending for line charts (with no sampling) using See this PR for the implementation of that: #110 So right now, it is doing a full re-upload to the GPU with any mutation method for any case outside of aforementioned line chart (no sampling) This is going to be an area of focus over the next couple of weeks getting incremental appends working for more than one chart type. May I ask, what chart type are you rendering for this use-case? Scatter? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
This might be a wild question, but is ChartGPU suitable for implementing an editable graph? If yes, where should I dig if I wanted to tackle this?
Think something where you can draw data points with a mouse and/or clicking to add and move specific points around. The use case is more of a multimedia application rather than data visualization, but surprisingly in other aspects this library seems like a great fit for the particular widget I’m working on (ability to show multiple lines, smooth zooming, performance, all come in very handy).
Are changes to DataStore observed/automatically reflected? I can see that DataStore interface supports
removeSeries()andappendSeries(), but they seem to operate on the entire series.From a brief look, I suppose the steps are like:
Beta Was this translation helpful? Give feedback.
All reactions