@@ -169,22 +169,22 @@ class ViewerLineRect extends React.Component {
169
169
super ( props ) ;
170
170
171
171
const {
172
- clickUiTargetAct, selectUiSweepAct, scrollUiWheelAct, entities,
172
+ clickUiTargetAct, selectUiSweepAct, scrollUiWheelAct, entities, uiSt ,
173
173
} = props ;
174
174
175
175
this . rootKlassLine = `.${ LIST_ROOT_SVG_GRAPH . LINE } ` ;
176
176
this . lineFocus = new LineFocus ( {
177
- W, H, entities, clickUiTargetAct, selectUiSweepAct, scrollUiWheelAct,
177
+ W, H, entities, clickUiTargetAct, selectUiSweepAct, scrollUiWheelAct, graphIndex : 0 , uiSt ,
178
178
} ) ;
179
179
180
180
this . rootKlassMulti = `.${ LIST_ROOT_SVG_GRAPH . MULTI } ` ;
181
181
this . multiFocus = new MultiFocus ( {
182
- W, H, entities, clickUiTargetAct, selectUiSweepAct, scrollUiWheelAct,
182
+ W, H, entities, clickUiTargetAct, selectUiSweepAct, scrollUiWheelAct, graphIndex : 1 , uiSt ,
183
183
} ) ;
184
184
185
185
this . rootKlassRect = `.${ LIST_ROOT_SVG_GRAPH . RECT } ` ;
186
186
this . rectFocus = new RectFocus ( {
187
- W, H, clickUiTargetAct, selectUiSweepAct, scrollUiWheelAct,
187
+ W, H, clickUiTargetAct, selectUiSweepAct, scrollUiWheelAct, graphIndex : 2 , uiSt ,
188
188
} ) ;
189
189
190
190
this . normChange = this . normChange . bind ( this ) ;
@@ -282,6 +282,7 @@ class ViewerLineRect extends React.Component {
282
282
tTrEndPts,
283
283
isUiNoBrushSt : true ,
284
284
sweepExtentSt : sweepExtent [ 0 ] ,
285
+ uiSt,
285
286
} ) ;
286
287
drawLabel ( this . rootKlassLine , null , 'Minutes' , 'Intensity' ) ;
287
288
drawDisplay ( this . rootKlassLine , false ) ;
@@ -298,6 +299,7 @@ class ViewerLineRect extends React.Component {
298
299
sweepExtentSt : sweepExtent [ 1 ] ,
299
300
isUiAddIntgSt,
300
301
isUiNoBrushSt,
302
+ uiSt,
301
303
} ) ;
302
304
drawLabel ( this . rootKlassMulti , cLabel , 'Minutes' , 'Intensity' ) ;
303
305
drawDisplay ( this . rootKlassMulti , isHidden ) ;
@@ -319,6 +321,7 @@ class ViewerLineRect extends React.Component {
319
321
tTrEndPts : curTrEndPts ,
320
322
isUiNoBrushSt : true ,
321
323
sweepExtentSt : sweepExtent [ 2 ] ,
324
+ uiSt,
322
325
} ) ;
323
326
drawLabel ( this . rootKlassRect , `${ pageValue } min` , 'M/Z' , 'Intensity' ) ;
324
327
drawDisplay ( this . rootKlassRect , false ) ;
0 commit comments