(fullLayout)
| 272 | } |
| 273 | |
| 274 | function areAllAxesFixed(fullLayout) { |
| 275 | var axList = axisIds.list({_fullLayout: fullLayout}, null, true); |
| 276 | |
| 277 | for(var i = 0; i < axList.length; i++) { |
| 278 | var disabled = axList[i].modebardisable; |
| 279 | if(!axList[i].fixedrange && disabled !== 'autoscale+zoominout' && disabled !== 'zoominout+autoscale') { |
| 280 | return false; |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | return true; |
| 285 | } |
| 286 | |
| 287 | // look for traces that support selection |
| 288 | // to be updated as we add more selectPoints handlers |
no outgoing calls
no test coverage detected
searching dependent graphs…