@@ -33,7 +33,6 @@ import {
3333 GroupCreator ,
3434} from '../components' ;
3535import {
36- BinningNumeric ,
3736 BinningDropdown ,
3837 NumericReciprocal ,
3938 ShowInLegend ,
@@ -176,23 +175,14 @@ const StyleTracesPanel = (props, {localize: _}) => (
176175 />
177176 </ PlotlySection >
178177 < PlotlySection name = { _ ( 'Binning' ) } >
179- < Radio
180- label = { _ ( 'X Binning' ) }
181- attr = "autobinx"
182- options = { [ { label : _ ( 'Auto' ) , value : true } , { label : _ ( 'Custom' ) , value : false } ] }
183- />
184- < BinningNumeric label = { _ ( 'X Bin Start' ) } attr = "xbins.start" axis = "x" />
185- < BinningNumeric label = { _ ( 'X Bin End' ) } attr = "xbins.end" axis = "x" />
186- < BinningNumeric label = { _ ( 'X Bin Size' ) } attr = "xbins.size" axis = "x" />
178+ < Numeric label = { _ ( 'X Bin Start' ) } attr = "xbins.start" axis = "x" />
179+ < Numeric label = { _ ( 'X Bin End' ) } attr = "xbins.end" axis = "x" />
180+ < Numeric label = { _ ( 'X Bin Size' ) } attr = "xbins.size" axis = "x" />
187181 < Numeric label = { _ ( 'Max X Bins' ) } attr = "nbinsx" />
188- < Radio
189- label = { _ ( 'Y Binning' ) }
190- attr = "autobiny"
191- options = { [ { label : _ ( 'Auto' ) , value : true } , { label : _ ( 'Custom' ) , value : false } ] }
192- />
193- < BinningNumeric label = { _ ( 'Y Bin Start' ) } attr = "ybins.start" axis = "y" />
194- < BinningNumeric label = { _ ( 'Y Bin End' ) } attr = "ybins.end" axis = "y" />
195- < BinningNumeric label = { _ ( 'Y Bin Size' ) } attr = "ybins.size" axis = "y" />
182+
183+ < Numeric label = { _ ( 'Y Bin Start' ) } attr = "ybins.start" axis = "y" />
184+ < Numeric label = { _ ( 'Y Bin End' ) } attr = "ybins.end" axis = "y" />
185+ < Numeric label = { _ ( 'Y Bin Size' ) } attr = "ybins.size" axis = "y" />
196186 < Numeric label = { _ ( 'Max Y Bins' ) } attr = "nbinsy" />
197187 </ PlotlySection >
198188 < PlotlySection label = { _ ( 'Bar Position' ) } >
0 commit comments