Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Android
- Android Apk
- java error
- MySQL
- html
- Eclipse
- 안드로이드
- css
- apache gzip
- Android Apk 이름 변경
- Program type already present
- error
- DataTable
- fragment
- Android Apk 이름
- spring
- JavaScript
- Java
- FLUTTER
- Kotlin
- Firebase
- Exception
- CSS사용법
- android fragment
- jQuery
- android error
- release Apk
- tomcat
- R프로그래밍
- release unsigned
Archives
- Today
- Total
selfstarter
billboard.js 예제 본문
billboard.js 예제
공식 사이트에 있는 대로 하면 쉽게 billboard.js 예제를 만들 수 있다.
https://naver.github.io/billboard.js/
cmd창에서 npm 명령어 실행
nodejs가 안깔려 있으면 설치할 것
npm install billboard.js
Sample Code
아래는 공식 getStarted 예제. 보는대로 사용법이 간단하다
type은 보여주는 차트의 타입인데 line, bar, area-spline 등으로 나타낼 수 있다.
현재는 여러개의 데이터가 동일한 타입으로 보여주지만 types property를 선언하여 각 데이터마다
다른 type으로 데이터를 보여줄 수 있다.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src="http://code.jquery.com/jquery-3.1.1.js"></script>
<!-- Step 1) Load D3.js -->
<script src="https://d3js.org/d3.v5.min.js"></script>
<!-- Step 2) Load billboard.js with style -->
<script src="<npm download src>\node_modules\billboard.js\dist\billboard.js"></script>
<!-- Load with base style -->
<link rel="stylesheet" href="<npm download src>\node_modules\billboard.js\dist\billboard.css">
<!-- Or load different theme style -->
<link rel="stylesheet" href="<npm download src>\node_modules\billboard.js\dist\theme\insight.css">
<script>
$(function(){
var chart = bb.generate({
bindto: "#chart",
data: {
type: "line",
columns: [
["data1", 10, 20, 100, 170, 150, 250],
["data2", 10, 100, 120, 35, 110, 50],
["data3", 20, 50, 160, 10, 50, 150]
],
colors: {
data1:"red",
data2:"00ffff",
data3:"green"
}
}
});
})
</script>
</head>
<body>
<div id="chart"></div>
</body>
</html>
'Web > Javascript' 카테고리의 다른 글
JavaScript extend 함수 사용법 (0) | 2020.08.11 |
---|---|
JavaScript bind 사용법 (0) | 2020.07.20 |
Javascript 다음 년도와 달 구하기 (0) | 2020.06.17 |
ajaxForm jquery 예제 (0) | 2020.06.15 |
Javascript copy paste 복사 붙여넣기 방지 (0) | 2020.06.01 |
Comments