(opts, layout)
| 616 | var gd; |
| 617 | |
| 618 | function _calc(opts, layout) { |
| 619 | gd = {}; |
| 620 | |
| 621 | gd.data = [Lib.extendFlat({type: 'splom'}, opts || {})]; |
| 622 | gd.layout = layout || {}; |
| 623 | supplyAllDefaults(gd); |
| 624 | Plots.doCalcdata(gd); |
| 625 | } |
| 626 | |
| 627 | it('should skip dimensions with conflicting axis types', function() { |
| 628 | spyOn(Lib, 'log').and.callThrough(); |
no outgoing calls
no test coverage detected
searching dependent graphs…