DefinitelyTyped/plotly.js/plotly.js-tests.ts
2016-06-29 13:27:18 -04:00

12 lines
179 B
TypeScript

/// <reference path="plotly.js.d.ts" />
var data = [
{
x: ['giraffes', 'orangutans', 'monkeys'],
y: [20, 14, 23],
type: 'bar'
}
];
Plotly.newPlot('test', data);