네이버 Billboard.js 차트 를 사용해보자

billboard.js 란?

네이버의 오픈소스 Javascript 차트 이다

📊 Re-usable, easy interface
JavaScript chart library based on D3.js

navergithub.com/naver/billboard.js

깃허브에서 소스를 확인할 수 있다
billboard.js

사용법

라이브러리 import

가져다 사용하기만 할 꺼니
D3 라이브러리 가 이미 있으면

  • CSS : https://naver.github.io/billboard.js/release/latest/dist/billboard.min.css
  • Javascript : https://naver.github.io/billboard.js/release/latest/dist/billboard.min.js
    D3 라이브러리가 없으면
  • CSS : https://naver.github.io/billboard.js/release/latest/dist/theme/datalab.min.css
  • Javascript : https://naver.github.io/billboard.js/release/latest/dist/billboard.pkgd.min.js

테마가 3종이 있지만 datalab 이 그나마 보기 좋다

소스에 차트 추가

chart 용 div 태그를 추가하고 (해당 id 를 기억하고 있다가)

1
<div id="chart123"></div>

script 에서 bindto 로 chart div 를 지정해주면 된다

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<script>
var chart = bb.generate({
data: {
columns: [
["data1", 30, 200, 100, 400, 150, 250],
["data2", 130, 100, 140, 200, 150, 50]
],
type: "bar"
},
bar: {
width: {
ratio: 0.5
}
},
bindto: "#chart123"
});
</script>

사용예제

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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Billboard 테스트</title>
<link rel="stylesheet" href="https://naver.github.io/billboard.js/release/latest/dist/theme/datalab.min.css">
<script src="https://naver.github.io/billboard.js/release/latest/dist/billboard.pkgd.min.js"></script>
</head>
<body>
<div id="barChart"></div>
<script>
var chart = bb.generate({
data: {
columns: [
["data1", 30, 200, 100, 400, 150, 250],
["data2", 130, 100, 140, 200, 150, 50]
],
type: "bar"
},
bar: {
width: {
ratio: 0.5
}
},
bindto: "#barChart"
});
setTimeout(function() {
chart.load({
columns: [
["data3", 130, -150, 200, 300, -200, 100]
]
});
}, 1000);
</script>
</body>
</html>

연관포스트