mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
191 B
TypeScript
12 lines
191 B
TypeScript
import * as Plotly from 'plotly';
|
|
|
|
var data: Plotly.BarData[] = [
|
|
{
|
|
x: ['giraffes', 'orangutans', 'monkeys'],
|
|
y: [20, 14, 23],
|
|
type: 'bar'
|
|
}
|
|
];
|
|
|
|
Plotly.newPlot('test', data);
|