(container, column, row, x, y)
| 1279 | |
| 1280 | it('places other subplots in the grid by default', function(done) { |
| 1281 | function checkDomain(container, column, row, x, y) { |
| 1282 | var domain = container.domain; |
| 1283 | expect(domain.row).toBe(row); |
| 1284 | expect(domain.column).toBe(column); |
| 1285 | expect(domain.x).toBeCloseToArray(x, 3); |
| 1286 | expect(domain.y).toBeCloseToArray(y, 3); |
| 1287 | } |
| 1288 | Plotly.newPlot(gd, [{ |
| 1289 | type: 'pie', labels: ['a', 'b'], values: [1, 2] |
| 1290 | }, { |
no outgoing calls
no test coverage detected
searching dependent graphs…