@@ -49,6 +49,25 @@ const StyleTracesPanel = (props, {localize: _}) => (
4949 options = { [ { label : _ ( 'Show' ) , value : true } , { label : _ ( 'Hide' ) , value : false } ] }
5050 />
5151 < 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 >
5271 < MultiColorPicker label = { _ ( 'Color' ) } attr = "color" />
5372 < TraceTypeSection name = { _ ( 'Pie Colors' ) } traceTypes = { [ 'pie' ] } mode = "trace" >
5473 < LayoutSection attr = "name" >
@@ -222,6 +241,7 @@ const StyleTracesPanel = (props, {localize: _}) => (
222241 < SymbolSelector label = { _ ( 'Symbol' ) } attr = "marker.symbol" />
223242 < Numeric label = { _ ( 'Border Width' ) } attr = "marker.line.width" />
224243 < MultiColorPicker label = { _ ( 'Border Color' ) } attr = "marker.line.color" />
244+ < Numeric label = { _ ( 'Max Number of Points' ) } attr = "marker.maxdisplayed" />
225245 </ TraceMarkerSection >
226246
227247 < TraceTypeSection
0 commit comments