본문으로 건너뛰기

Charts-Scatter

[report 영역] Scatter Chart

Scatter Chart

필드타입필수설명기본값
sectionstringY데이터가 표출되는 영역
report
contentsarrayY차트 데이터
configobjectY기본 설정
config.idstringY차트 고유 식별자
config.typestringYtype 구분
config.dimensionsstring[]Y항목에 해당하는 컬럼명
config.measuresstring[]Y값에 해당하는 컬럼명
config.optionobjectN세부 설정
config.option.chartTypestringY차트 유형
scatter
config.option.styleobjectN차트 스타일 설정
config.option.style.layoutenumN차트 레이아웃
'horizontal','vertical'
vertical
config.option.style.titleobjectN제목 스타일 설정
config.option.style.title.textstringN차트 제목 텍스트
config.option.style.title.colorstringN제목 색상
config.option.style.title.fontSizenumberN제목 글자 크기
config.option.style.title.fontWeightnumberN제목 글자 굵기
config.option.style.xAxisobjectYX축 설정
config.option.style.xAxis.typeenumNx축의 type설정
'category','number'
number
config.option.style.xAxis.anglenumberNX축 글자 각도0
config.option.style.xAxis.fontSizenumberNX축 글자 크기12
config.option.style.yAxisobjectNY축 설정
config.option.style.yAxis.anglenumberNY축 글자 각도0
config.option.style.yAxis.fontSizenumberNY축 글자 크기12
config.option.style.yAxis.minnumberNY축의 최소 값0
config.option.style.yAxis.maxnumberNY축의 최대 값100
config.option.style.legendobjectN범례 설정
config.option.style.legend.layoutenumN범례 레이아웃
'horizontal','vertical'
horizontal
config.option.style.legend.alignenumN범례 정렬
'left','center','right'
center
config.option.style.legend.verticalAlignenumN범례 수직 정렬
'top','middle','bottom'
bottom
config.optiostyle.tooltipobjectN툴팁 설정
config.option.style.tooltip.labelFontsizenumberN툴팁 레이블 글자 크기10
config.option.style.tooltip.contentFontsizenumberN툴팁 내용 글자 크기12
config.option.style.columnobject[]N컬럼 설정
config.option.style.column[].namestringN컬럼명
config.option.style.column[].fillColorstringN컬럼 색상

적용 우선 순위
1.contents[].fillColor
2.option.style.column.fillColor
3.기본 색상
정해진 컬러 세트에서
순서대로 색이 정해짐

Protocol 구조

{
section: "report",
contents:[{ key: value }],
config: {
id: string,
type: string,
dimensions: string[],
measures: string[],
option: {
type: 'scatter' | 'bar' | 'line' | 'pie' | 'radar',
style: {
layout: 'horizontal' | 'vertical',
title: {
text: string,
color: string,
fontSize: number,
fontWeight: number,
note:string;
},
xAxis: {
type:'category'|'number'
angle: number,
fontSize: number,
},
yAxis: {
angle: number,
fontSize: number,
min:number,
max:number
},
legend: {
layout: 'horizontal' | 'vertical',
align: 'left' | 'center' | 'right',
verticalAlign: 'top' | 'middle' | 'bottom',
},
tooltip: {
labelFontsize: number,
contentFontsize: number,
},
column: [{
name: string,
fillColor: string,
}]
}
}}
}

Example

{
"section":"report",
"contents":[
{
"격자ID": "다사535516",
"거주인구": 1,
"직장인구": 901
},
{
"격자ID": "다사535517",
"거주인구": 0,
"직장인구": 649
},
{
"격자ID": "다사536515",
"거주인구": 0,
"직장인구": 4838
},
{
"격자ID": "다사536516",
"거주인구": 0,
"직장인구": 1132
},
{
"격자ID": "다사536517",
"거주인구": 1,
"직장인구": 960
},
{
"격자ID": "다사536518",
"거주인구": 0,
"직장인구": 117
}
],
"config": {
"id": "resid_work_scatter_chart",
"type": "chart",
"dimensions": ["격자ID"],
"measures": ["거주인구","직장인구"],
"option": {
"type": "scatter",
"style": {
"layout": "horizontal",
"title": {
"text": "거주인구와 직장인구 비교",
"note": "격자별 거주인구와 직장인구를 함께 비교할 수 있습니다. 지역 내 거주인구와 직장인구가 고르게 분포되어 있는지 확인할 수 있습니다.",
"fontSize": 16,
"fontWeight": 600
},
"xAxis": {
"fontSize": 12,
"angle": 0
},
"yAxis": {
"fontSize": 12
},
"legend": {
"layout": "horizontal",
"align": "center",
"verticalAlign": "bottom"
},
"tooltip": {
"labelFontsize": 14,
"contentFontsize": 14
},
"column":[{
"name": "격자ID",
"fillColor": "#4085BE"
}]
}
}
}
}