Closed
Description
https://codepen.io/anon/pen/WKEdQb?editors=1010
In this pen, as you can see the last trace is not visible.
If you press the autoscale the last trace appears.
This happens only if you plot trace in the following order:
[Marker Trace 1, Marker Trace 2, ..., Marker Trace N, Line Trace]
Maybe it is not a plotly bug, it could be something related to regl-line2d, or the way plotly uses it.
If this can be usefull, in regl-line2d, there are a step where undefined passes are filtered out.
// remove null items
this.passes = this.passes.filter(Boolean)
This leads to a misalignment of ids between plotly and regl-line2d.