(gd)
| 1850 | }; |
| 1851 | |
| 1852 | function needsRedrawForShift(gd) { |
| 1853 | if('_redrawFromAutoMarginCount' in gd._fullLayout) { |
| 1854 | return false; |
| 1855 | } |
| 1856 | var axList = axisIDs.list(gd, '', true); |
| 1857 | for(var ax in axList) { |
| 1858 | if(axList[ax].autoshift || axList[ax].shift) return true; |
| 1859 | } |
| 1860 | return false; |
| 1861 | } |
| 1862 | |
| 1863 | plots.doAutoMargin = function(gd) { |
| 1864 | var fullLayout = gd._fullLayout; |
no outgoing calls
no test coverage detected
searching dependent graphs…