-
Notifications
You must be signed in to change notification settings - Fork 0
/
quantidadeUsuarios.js
59 lines (54 loc) · 1.62 KB
/
quantidadeUsuarios.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
import { getCSS, tickConfig } from "./common.js"
async function quantidadeUsuariosPorRede() {
const url = 'https://raw.githubusercontent.com/guilhermeonrails/api/main/numero-usuarios.json'
const res = await fetch(url)
const dados = await res.json()
const nomeDasRedes = Object.keys(dados)
const quantidadeDeUsuarios = Object.values(dados)
const data = [
{
x: nomeDasRedes,
y: quantidadeDeUsuarios,
type: 'bar',
marker: {
color: getCSS('--primary-color')
}
}
]
const laytout = {
plot_bgcolor: getCSS('--bg-color'),
paper_bgcolor: getCSS('--bg-color'),
title: {
text: 'Redes sociais com mais usuários',
x: 0,
font: {
color: getCSS('--primary-color'),
size: 30,
font: getCSS('--font')
}
},
xaxis: {
tickfont: tickConfig,
title: {
text: 'Nome das redes',
font: {
color: getCSS('--secondary-color')
}
}
},
yaxis: {
tickfont: tickConfig,
title: {
text: 'Bilhões de usuários ativos',
font: {
color: getCSS('--secondary-color')
}
}
}
}
const grafico = document.createElement('div')
grafico.className = 'grafico'
document.getElementById('graficos-container').appendChild(grafico)
Plotly.newPlot(grafico, data, laytout)
}
quantidadeUsuariosPorRede()