forked from rakannimer/react-google-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
58 lines (56 loc) · 1.79 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import React from "react";
import ReactDOM from "react-dom";
import Chart from "react-google-charts";
// Ref : https://developers.google.com/chart/interactive/docs/gallery/histogram
const data = [
["Dinosaur", "Length"],
["Acrocanthosaurus (top-spined lizard)", 12.2],
["Albertosaurus (Alberta lizard)", 9.1],
["Allosaurus (other lizard)", 12.2],
["Apatosaurus (deceptive lizard)", 22.9],
["Archaeopteryx (ancient wing)", 0.9],
["Argentinosaurus (Argentina lizard)", 36.6],
["Baryonyx (heavy claws)", 9.1],
["Brachiosaurus (arm lizard)", 30.5],
["Ceratosaurus (horned lizard)", 6.1],
["Coelophysis (hollow form)", 2.7],
["Compsognathus (elegant jaw)", 0.9],
["Deinonychus (terrible claw)", 2.7],
["Diplodocus (double beam)", 27.1],
["Dromicelomimus (emu mimic)", 3.4],
["Gallimimus (fowl mimic)", 5.5],
["Mamenchisaurus (Mamenchi lizard)", 21.0],
["Megalosaurus (big lizard)", 7.9],
["Microvenator (small hunter)", 1.2],
["Ornithomimus (bird mimic)", 4.6],
["Oviraptor (egg robber)", 1.5],
["Plateosaurus (flat lizard)", 7.9],
["Sauronithoides (narrow-clawed lizard)", 2.0],
["Seismosaurus (tremor lizard)", 45.7],
["Spinosaurus (spiny lizard)", 12.2],
["Supersaurus (super lizard)", 30.5],
["Tyrannosaurus (tyrant lizard)", 15.2],
["Ultrasaurus (ultra lizard)", 30.5],
["Velociraptor (swift robber)", 1.8]
];
const options = {
title: "Lengths of dinosaurs, in meters",
legend: { position: "none" }
};
class App extends React.Component {
render() {
return (
<div className="App">
<Chart
chartType="Histogram"
width="100%"
height="400px"
data={data}
options={options}
/>
</div>
);
}
}
const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);