(
traceType, // in
fullLayout // inout
)
| 59 | } |
| 60 | |
| 61 | function clearMinTextSize( |
| 62 | traceType, // in |
| 63 | fullLayout // inout |
| 64 | ) { |
| 65 | var minKey = getMinKey(traceType); |
| 66 | fullLayout[minKey] = undefined; |
| 67 | } |
| 68 | |
| 69 | function getMinKey(traceType) { |
| 70 | return '_' + traceType + 'Text_minsize'; |