-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 1.06 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>D3 Dashboard</title>
<script src="https://d3js.org/d3.v7.min.js"></script>
<!-- Incluindo D3.js -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Filtros -->
<div id="filters">
<input type="number" id="start-date" placeholder="Ano Início" />
<input type="number" id="end-date" placeholder="Ano Fim" />
<button id="filter-button">Filtrar</button>
<button id="clear-filters">Limpar Filtros</button>
</div>
<!-- Tooltip -->
<div id="tooltip"></div>
<!-- Gráficos -->
<div id="dashboard">
<div id="bar-chart-container" class="model1"></div>
<div id="line-chart-container" class="model1"></div>
<div id="pie-chart-container" class="model1"></div>
<div id="combined-chart-container" class="model1"></div>
</div>
<!-- Importando o app.js -->
<script type="module" src="app.js"></script>
</body>
</html>