DefinitelyTyped/types/react-plotly.js/react-plotly.js-tests.tsx
Jon Freedman 749ebd987f React plotly.js (#27461)
* typing as per https://github.com/plotly/react-plotly.js/issues/80

* fix travis build (thanks intellij...)

* bring typescript version inline with react
2018-07-23 08:41:13 -07:00

25 lines
679 B
TypeScript

import * as React from 'react';
import Plot from 'react-plotly.js';
/**
* based on https://plot.ly/javascript/react/#quick-start
*/
export class SimpleChartComponent extends React.PureComponent<any> {
render() {
return(
<Plot
data={[
{
x: [1, 2, 3],
y: [2, 6, 3],
type: 'scatter',
marker: {color: 'red'},
},
{type: 'bar', x: [1, 2, 3], y: [2, 5, 3]},
]}
layout={ {width: 320, height: 240, title: 'A Fancy Plot'} }
/>
);
}
}