(gd)
| 2029 | }; |
| 2030 | |
| 2031 | function refineTicks(gd) { |
| 2032 | var axList = axisIDs.list(gd, '', true); |
| 2033 | |
| 2034 | [ |
| 2035 | '_adjustTickLabelsOverflow', |
| 2036 | '_hideCounterAxisInsideTickLabels' |
| 2037 | ].forEach(function(k) { |
| 2038 | for(var i = 0; i < axList.length; i++) { |
| 2039 | var hideFn = axList[i][k]; |
| 2040 | if(hideFn) hideFn(); |
| 2041 | } |
| 2042 | }); |
| 2043 | } |
| 2044 | |
| 2045 | var marginKeys = ['l', 'r', 't', 'b', 'p', 'w', 'h']; |
| 2046 |
no outgoing calls
no test coverage detected
searching dependent graphs…