@@ -64,7 +64,7 @@ class ScatterStreaming(Base):
64
64
_func = 'scatterstreaming'
65
65
66
66
@staticmethod
67
- def clean (x , y , color = None , label = None , size = None , xaxis = None , yaxis = None ):
67
+ def clean (x , y , color = None , label = None , value = None , colormap = None , size = None , xaxis = None , yaxis = None ):
68
68
"""
69
69
Create a streaming scatter plot of x and y.
70
70
@@ -85,6 +85,12 @@ def clean(x, y, color=None, label=None, size=None, xaxis=None, yaxis=None):
85
85
label : array-like, optional, singleton or (n,)
86
86
Single integer or array to set colors via groups
87
87
88
+ value : array-like, optional, singleton or (n,)
89
+ Values to set node colors via a linear scale
90
+
91
+ colormap : string
92
+ Specification of color map, only colorbrewer types supported
93
+
88
94
size : array-like, optional, singleton or (n,)
89
95
Single size or array to set point sizes
90
96
@@ -100,6 +106,8 @@ def clean(x, y, color=None, label=None, size=None, xaxis=None, yaxis=None):
100
106
101
107
outdict = add_property (outdict , color , 'color' )
102
108
outdict = add_property (outdict , label , 'label' )
109
+ outdict = add_property (outdict , value , 'value' )
110
+ outdict = add_property (outdict , colormap , 'colormap' )
103
111
outdict = add_property (outdict , size , 'size' )
104
112
outdict = add_property (outdict , xaxis , 'xaxis' )
105
113
outdict = add_property (outdict , yaxis , 'yaxis' )
0 commit comments