(trace, ax, opts)
| 132 | }; |
| 133 | |
| 134 | function expandForErrorBars(trace, ax, opts) { |
| 135 | var extremes = trace._extremes[ax._id]; |
| 136 | var errExt = findExtremes(ax, opts._bnds, {padded: true}); |
| 137 | extremes.min = extremes.min.concat(errExt.min); |
| 138 | extremes.max = extremes.max.concat(errExt.max); |
| 139 | } |
| 140 | |
| 141 | function sceneOptions(gd, subplot, trace, positions, x, y) { |
| 142 | var opts = convert.style(gd, trace); |
no test coverage detected
searching dependent graphs…