“plotly em react” Respostas de código

Instale plotly com react

$ npm install react-plotly.js plotly.js
Krzysztof Baran

plotly em react

import React from 'react';
import Plot from 'react-plotly.js';

class App extends React.Component {
  render() {
    return (
      <Plot
        data={[
          {
            x: [1, 2, 3],
            y: [2, 6, 3],
            type: 'scatter',
            mode: 'lines+markers',
            marker: {color: 'red'},
          },
          {type: 'bar', x: [1, 2, 3], y: [2, 5, 3]},
        ]}
        layout={ {width: 320, height: 240, title: 'A Fancy Plot'} }
      />
    );
  }
}
Krzysztof Baran

Respostas semelhantes a “plotly em react”

Perguntas semelhantes a “plotly em react”

Mais respostas relacionadas para “plotly em react” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código