Using bokeh's Arrow to draw VectorField?
See original GitHub issueSo I found the drawing of the vectorfield arrows in the bokeh backend to be a bit awkward (mostly in looks and lack of styling options) and tried to replace it by bokeh’s Arrow through a CompositeElementPlot. Problem is (which is maybe why you didn’t do that in the first place…) that bokeh’s Figure
does not expose Arrow, which is an annotation
, not a marker
or glyph
(if I understand correctly), and hence drawing arrows in holoviews has to pass by style options, not data (again, if my understanding is correct).
Question is, do you think that could be addressed on the Holoviews side, or would one have to make a PR on the bokeh side? I briefly skimmed some related discussions on here from when you were implementing VectorField, but that’s a while ago and I couldn’t find any information on this in particular.
Issue Analytics
- State:
- Created 5 years ago
- Comments:17 (8 by maintainers)
Top GitHub Comments
Here’s how to use a vectorized Arrow:
like this? seems no problem: