반응형
SMALL
var option = {
title : {}
, tooltip : {
trigger : 'axis'
, axisPointer : {
type : 'cross'
, label : { backgroundColor : '#6a7985' }
}
}
, legend : {
center : 'center'
, data : [ '발생로그 건수' ]
}
, grid : {
left : '3%'
, right : '4%'
, bottom : '3%'
, containLabel : true
}
, xAxis : [{
type : 'category'
, boundaryGap : false
, data : []
}]
, yAxis : [{
type : 'value'
}]
, series : [{
name : '발생로그 건수'
, type : 'line'
, areaStyle : {}
, data : []
, smooth : true
, itemStyle : { normal : { color:'#6699ff', lineStyle:{ color:'#6699ff' }}}
}]
};
series 에
itemStyle : { normal : { color:'#6699ff', lineStyle:{ color:'#6699ff' }}}
이 코드 추가해주면 색상 변경가능!
색상은
https://www.w3schools.com/colors/colors_picker.asp
여기서 참조!
반응형
'Programing' 카테고리의 다른 글
VScode 로 maven 프로젝트 생성 (0) | 2021.10.14 |
---|---|
[ Golang ] 설치 (0) | 2021.10.06 |
이클립스 설치경로 확인방법 (0) | 2021.07.27 |
텔레그램 봇 생성방법! (0) | 2021.07.26 |
콘솔창에서 parameter가 이상한 값으로 넘어올때 확인 방법 (0) | 2018.08.02 |