forked from MatthieuGuinet/Project1_Pokestar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chart.js
61 lines (60 loc) · 1.07 KB
/
chart.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
59
60
61
const options = {
series: [
{
name: "Evoli",
data: [67, 34, 38, 35, 90],
},
{
name: "Voltali",
data: [34, 93, 42, 89, 37],
},
{
name: "Pyroli",
data: [56, 78, 54, 74, 56],
},
{
name: "Aquali",
data: [65, 60, 89, 53, 40],
},
],
xaxis: {
categories: ["Intelligence", "Strength", "Defense", "Speed", "Cuteness"],
labels: {
style: {
colors: [],
fontSize: "12px",
fontFamily: "Raleway",
fontWeight: 400,
cssClass: "apexcharts-yaxis-label",
},
},
},
yaxis: {
show: false,
},
legend: {
fontFamily : "Raleway",
labels: {
colors: "white",
}
},
colors: ["#C08C5B", "#E9BC2E", "#FFA948", "#879CC6"],
chart: {
height: 500,
type: "radar",
animations: {
enabled: true,
easing: "linear",
speed: 1000,
animateGradually: {
enabled: true,
delay: 200,
},
dynamicAnimation: {
enabled: true,
speed: 100,
},
},
},
};
export {options};