(opts, msg)
| 883 | // others should be counts: gl3d, geo, mapbox, map, parcoords, pie, ternary |
| 884 | // if omitted, that subplot type is assumed to not exist |
| 885 | function assertSubplots(opts, msg) { |
| 886 | msg = msg || ''; |
| 887 | assertCartesian(opts.cartesian || [], opts.gl2d || [], msg); |
| 888 | Object.keys(subplotSelectors).forEach(function(type) { |
| 889 | assertSubplot(type, opts[type] || 0, msg); |
| 890 | }); |
| 891 | } |
| 892 | |
| 893 | var jsLogo = 'https://images.plot.ly/language-icons/api-home/js-logo.png'; |
| 894 |
no test coverage detected
searching dependent graphs…