-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
50 lines (43 loc) · 918 Bytes
/
index.html
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
<link
rel="stylesheet"
type="text/css"
href="https://cdn.flexmonster.com/theme/softdefault/flexmonster.min.css"
/>
<link
href="https://fonts.googleapis.com/css2?family=Alata&display=swap"
rel="stylesheet"
/>
<style>
h2 {
font-family: "Alata", sans-serif;
margin-top: 50px;
text-align: center;
}
/* Charts Style */
.fm-charts-color-1 {
fill: #00a45a !important;
}
.fm-charts-color-2 {
fill: #df3800 !important;
}
.fm-charts-color-3 {
fill: #ffb800 !important;
}
.fm-charts-color-4 {
fill: #6d3bd8 !important;
}
.fm-charts-color-5 {
fill: #0075ff !important;
}
#fm-yAxis-label,
#fm-xAxis > text,
#fm-yAxis > text {
display: none;
}
</style>
<body>
<div id="pivot-container"></div>
<h2>Top 5 universities by the number of publications</h2>
<div id="pivot-charts-container"></div>
</body>
<script src="./dashboard.js"></script>