@@ -8,7 +8,7 @@ def _draw_line2d_helper(renderer, data):
88
99 if s .is_parametric and s .use_cm :
1010 x , y , param = data
11- if not s .is_point :
11+ if not s .is_scatter :
1212 x , y , param = p ._get_segments (x , y , param )
1313 colormap = (
1414 next (p ._cyccm )
@@ -18,7 +18,7 @@ def _draw_line2d_helper(renderer, data):
1818 source = {"xs" : x , "ys" : y , "us" : param }
1919 ds , line , cb , kw = p ._create_gradient_line (
2020 "xs" , "ys" , "us" , source , colormap , s .get_label (p .use_latex ),
21- s .rendering_kw , s .is_point )
21+ s .rendering_kw , s .is_scatter )
2222 h = p ._fig .add_glyph (ds , line )
2323 handle .append (h )
2424 tooltips = [("x" , "@xs" ), ("y" , "@ys" ), ("u" , "@us" )]
@@ -46,7 +46,7 @@ def _draw_line2d_helper(renderer, data):
4646 line_width = 2 , color = color ,
4747 legend_label = s .get_label (p .use_latex )
4848 )
49- if not s .is_point :
49+ if not s .is_scatter :
5050 kw = p .merge ({}, lkw , s .rendering_kw )
5151 handle = [p ._fig .line ("xs" , "ys" , source = source , ** kw )]
5252 else :
@@ -84,7 +84,7 @@ def _update_line2d_helper(renderer, data, handles):
8484
8585 if s .is_2Dline and s .is_parametric and s .use_cm :
8686 x , y , param = data
87- if not s .is_point :
87+ if not s .is_scatter :
8888 xs , ys , us = p ._get_segments (x , y , param )
8989 else :
9090 xs , ys , us = x , y , param
0 commit comments