Notice
반응형
Recent Posts
250x250
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
- createBro
- SCIPRT
- 이론
- 병행프로세스와 상호배제
- googleCharts
- IntelliJ
- CSS
- react
- 이클립스
- script
- html
- jsp
- node
- 응용SW
- Eclipse
- Oracle
- googleChart
- java
- npm
- 책추천
- SQL
- php version
- 정처산기
- txs
- 이미지용량제한
- TSX
- input
- 붙여넣기방지
- js
- BREW
Archives
- Today
- Total
개발하자
[SCRIPT] 구글차트 파이차트 (반원) 본문
728x90
안녕하세요. 오늘은 구글차트를 활용하여 파이차트를 만들었습니다
기본적인 파이차트도 있지만 반원으로도 만들 수 있습니다.
간단하게 전체 데이터의 합계를 1개 더 조회해서 가져오는 것인데요
DB에서 데이터를 가져올때 각 데이터 합계, 각 데이터 총합계 이렇게 들고 오면 가능합니다.
예를 들어서 오렌지 20, 사과 30의 데이터가 있다면 안보일 데이터 50을 가져오는 것이지요
| 오렌지 20 / 사과 30 / 반원으로 사용될 데이터 50
예제
- 데이터 가져오는 쿼리 (가독성이 떨어지는 쿼리이지만 느리거나 문제가 되진 않습니다.)
- '무'라고 되어있는 데이터가 전체 데이터 합계입니다.(안보이는 반원)
select A.*
from
(
select '매우불만족' as grade, ifnull(round(avg(OVALL_STSFDG_SCOR),2),0) as average
from GSN_26_PBLPIC_STSFDG
where OVALL_STSFDG_SCOR <= 20
union
select '불만족' as grade, ifnull(round(avg(OVALL_STSFDG_SCOR),2),0) as average
from GSN_26_PBLPIC_STSFDG
where OVALL_STSFDG_SCOR > 20 and OVALL_STSFDG_SCOR <= 40
union
select '보통' as grade, ifnull(round(avg(OVALL_STSFDG_SCOR),2),0) as average
from GSN_26_PBLPIC_STSFDG
where OVALL_STSFDG_SCOR > 40 and OVALL_STSFDG_SCOR <= 60
union
select '만족' as grade, ifnull(round(avg(OVALL_STSFDG_SCOR),2),0) as average
from GSN_26_PBLPIC_STSFDG
where OVALL_STSFDG_SCOR > 60 and OVALL_STSFDG_SCOR <= 80
union
select '매우만족' as grade, ifnull(round(avg(OVALL_STSFDG_SCOR),2),0) as average
from GSN_26_PBLPIC_STSFDG
where OVALL_STSFDG_SCOR > 80 and OVALL_STSFDG_SCOR <= 100
union
select '무' grade, sum(B.average)
from(
select '매우불만족' as grade, ifnull(round(avg(OVALL_STSFDG_SCOR),2),0) as average
from GSN_26_PBLPIC_STSFDG
where OVALL_STSFDG_SCOR <= 20
union
select '불만족' as grade, ifnull(round(avg(OVALL_STSFDG_SCOR),2),0) as average
from GSN_26_PBLPIC_STSFDG
where OVALL_STSFDG_SCOR > 2 and OVALL_STSFDG_SCOR <= 4
union
select '보통' as grade, ifnull(round(avg(OVALL_STSFDG_SCOR),2),0) as average
from GSN_26_PBLPIC_STSFDG
where OVALL_STSFDG_SCOR > 4 and OVALL_STSFDG_SCOR <= 6
union
select '만족' as grade, ifnull(round(avg(OVALL_STSFDG_SCOR),2),0) as average
from GSN_26_PBLPIC_STSFDG
where OVALL_STSFDG_SCOR > 6 and OVALL_STSFDG_SCOR <= 8
union
select '매우만족' as grade, ifnull(round(avg(OVALL_STSFDG_SCOR),2),0) as average
from GSN_26_PBLPIC_STSFDG
where OVALL_STSFDG_SCOR > 8
) B
) A
- 파이차트 만들기 (DB에서 가져온 데이터 활용)
<div id="feelPie" class="chart_area" style="width: 100%; height: 600px;"></div>
<script>
google.charts.load('current', {packages:['corechart']});
google.charts.setOnLoadCallback(feelPie);
function feelPie() {
var data = google.visualization.arrayToDataTable([
['grade', '점수',],
<c:forEach var="feelPie" items="${feelPie}">
['${feelPie.grade}', ${feelPie.per}],
</c:forEach>
]);
var options = {
pieHole: 0.5,
textStyle:{fontSize: 20,italic: true},
fontSize: 22,
chartArea: {left: "0",
top: "5%",
height: "1000",
width: '100%',
backgroundColor: {fill: '#464646',stroke:'black', strokeSize: 10},
},
tooltip : {textStyle: {color: '#333', fontSize: 28}, showColorCode: true, text:'value'},
legend: {position: 'none',textStyle: {color: 'blue', fontSize: 16} },
slices: {0: {color: '#ff8484'},
1:{color: '#ffcb7f'},
2:{color: '#2ed68b'},
3:{color: '#01a7ff'}, // 안전
4: {color: '#7060ff'}, // 매우안전
5:{color: 'transparent'}}, // 반절단용
pieStartAngle: 270,
animation:{
duration: 1000,
easing: 'in'
},
pieSliceText: 'value'
// pointer-events: 'none'
};
var chart = new google.visualization.PieChart(document.getElementById('feelPie'));
chart.draw(data, options);
};
</script>
- 파이차트 만들기2 (하드코딩)
공부하면서 유용했던 부분 메모겸 공유하고자 끄적입니다.
고쳐야하는 부분있다면 댓글 남겨주시면 수정하겠습니다.
행복한 하루 보내세요 (❁´◡`❁)
728x90
반응형
'TECH STACKS > JSP︲HTML ︲CSS ︲SCRIPT' 카테고리의 다른 글
[SCRIPT] 스마트에디터 이미지 붙여넣기 방지 및 이미지 용량 제한 (0) | 2024.02.16 |
---|---|
[JS] 로딩 화면 만들기 (3) | 2023.12.28 |
[JSP] jsp에 DB데이터 조회 및 삭제 하기 (0) | 2023.12.14 |
[SCRIPT] 구글차트 툴팁 깜빡임 해결 (0) | 2023.12.13 |
[SCRIPT] 구글차트 막대그래프 (막대에 데이터 표출) (0) | 2023.12.13 |