“reagować w reakcie” Kod odpowiedzi

Zainstaluj plotly z React

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

reagować w reakcie

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

Odpowiedzi podobne do “reagować w reakcie”

Pytania podobne do “reagować w reakcie”

Więcej pokrewnych odpowiedzi na “reagować w reakcie” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu