emer / etable

Data table structure in Go, now developed at https://github.com/cogentcore/core/tree/main/tensor
BSD 3-Clause "New" or "Revised" License
117 stars 9 forks source link

Add support for hover over eplot graph to show actual numbers #9

Open rcoreilly opened 4 years ago

rcoreilly commented 4 years ago

The challenge is that the graph is just the SVG rendering generated by gonum/plot and so we really don't have any way to map a point on the screen back into the original data, without a huge amount of calculating or something. Maybe we can get some direct access to the goplot data that is generated in service of rendering, and figure out how to annotate from there.