forked from code4fukui/chart-bar
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (32 loc) · 1.28 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
35
36
37
38
<!DOCTYPE html><html><head><meta charset="utf-8"><meta name="viewport" content="width=device-width">
<title>chart-bar demo</title>
</head>
<body style="text-align:center">
<h1>chart-bar tag demo</h1>
<h2>data.go.jp グループ別リソース数</h2>
<script type="module" src="./chart-bar.js"></script>
<chart-bar style="height:400px;width:600px;">
name,count
農林水産業,96777
行財政,47496
司法・安全・環境,44875
企業・家計・経済,28641
教育・文化・スポーツ・生活,28012
情報通信・科学技術,20507
人口・世帯,19872
住宅・土地・建設,12329
社会保障・衛生,9975
労働・賃金,9638
エネルギー・水,7369
国土・気象,6442
国際,5767
鉱工業,4470
商業・サービス業,2690
その他,2138
運輸・観光,1245
</chart-bar>
<h2>data.go.jp フォーマット別リソース数</h2>
<chart-bar src="https://code4fukui.github.io/discovery_datagojp/data/data_go_jp_format.csv" style="width:100vw;height:30vh;"></chart-bar>
DATA: <a href=https://github.com/code4fukui/discovery_datagojp/blob/main/data/data_go_jp_format.csv>CC BY data_go_jp_format.csv data.go.jp データカタログサイト統計データ</a><br>
</body>
</html>