MCPcopy Index your code
hub / github.com/plotly/plotly.js / areAllAxesFixed

Function areAllAxesFixed

src/components/modebar/manage.js:274–285  ·  view source on GitHub ↗
(fullLayout)

Source from the content-addressed store, hash-verified

272}
273
274function 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

Callers 1

getButtonGroupsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…