@@ -49,6 +49,25 @@ const StyleTracesPanel = (props, {localize: _}) => (
49
49
options = { [ { label : _ ( 'Show' ) , value : true } , { label : _ ( 'Hide' ) , value : false } ] }
50
50
/>
51
51
< NumericFraction label = { _ ( 'Trace Opacity' ) } attr = "opacity" />
52
+ < PlotlySection name = { _ ( 'Cones & Streamtubes' ) } >
53
+ < Numeric label = { _ ( 'Size' ) } attr = "sizeref" />
54
+ < Dropdown
55
+ label = { _ ( 'Size Mode' ) }
56
+ options = { [ { label : _ ( 'scaled' ) , value : 'scaled' } , { label : _ ( 'absolute' ) , value : 'absolute' } ] }
57
+ attr = "sizemode"
58
+ />
59
+ < Dropdown
60
+ label = { _ ( 'Cone Anchor' ) }
61
+ options = { [
62
+ { label : _ ( 'Tip' ) , value : 'tip' } ,
63
+ { label : _ ( 'Tail' ) , value : 'tail' } ,
64
+ { label : _ ( 'Center' ) , value : 'center' } ,
65
+ { label : _ ( 'Center of Mass' ) , value : 'cm' } ,
66
+ ] }
67
+ attr = "anchor"
68
+ />
69
+ < Numeric label = { _ ( 'Max Tube segments' ) } attr = "maxdisplayed" />
70
+ </ PlotlySection >
52
71
< MultiColorPicker label = { _ ( 'Color' ) } attr = "color" />
53
72
< TraceTypeSection name = { _ ( 'Pie Colors' ) } traceTypes = { [ 'pie' ] } mode = "trace" >
54
73
< LayoutSection attr = "name" >
@@ -222,6 +241,7 @@ const StyleTracesPanel = (props, {localize: _}) => (
222
241
< SymbolSelector label = { _ ( 'Symbol' ) } attr = "marker.symbol" />
223
242
< Numeric label = { _ ( 'Border Width' ) } attr = "marker.line.width" />
224
243
< MultiColorPicker label = { _ ( 'Border Color' ) } attr = "marker.line.color" />
244
+ < Numeric label = { _ ( 'Max Number of Points' ) } attr = "marker.maxdisplayed" />
225
245
</ TraceMarkerSection >
226
246
227
247
< TraceTypeSection
0 commit comments