I have a UI where segments of a time series are interactively selected and labeled / classified. These segments are then color-coded accordingly.
To support this requirement to color-code different segments of a curve, I can use either MultiLine
or Segment
glyphs.
Based on the comments in the following Discourse topic, there is apparently a bug in visualization with certain glyphs using datetime axes, and this appears to affect my use-case with MultiLine
and Bokeh 2.2.3. Things seem to work well in terms of displaying and updating with a Segment
glyphs.
https://discourse.bokeh.org/t/datetime-with-multi-line-and-cds/6777
With that background, a two-part question is (i) is there an envisioned timeframe (order-of-magnitude) when this bug is planned to be addressed? and (ii) generally, is it more efficient to update multiline or segment glyphs?
For context, I have approximately n=100,000 points in the data source, and thus n-1 multilines, but the updates are being done with a source data patch to smallish numbers of these at any one time.