Merge pull request #3039 from daschw/plotly-marker
fix plotly not showing the second marker
This commit is contained in:
commit
6ac7b41eb0
@ -708,7 +708,7 @@ function plotly_series_segments(series::Series, plotattributes_base::KW, x, y, z
|
|||||||
segments = iter_segments(series, st)
|
segments = iter_segments(series, st)
|
||||||
plotattributes_outs = fill(KW(), (hasfillrange ? 2 : 1 ) * length(segments))
|
plotattributes_outs = fill(KW(), (hasfillrange ? 2 : 1 ) * length(segments))
|
||||||
|
|
||||||
needs_scatter_fix = !isscatter && hasmarker && !any(isnan,y)
|
needs_scatter_fix = !isscatter && hasmarker && !any(isnan,y) && length(segments) > 1
|
||||||
|
|
||||||
for (i,rng) in enumerate(segments)
|
for (i,rng) in enumerate(segments)
|
||||||
plotattributes_out = deepcopy(plotattributes_base)
|
plotattributes_out = deepcopy(plotattributes_base)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user