본문 바로가기

카테고리 없음

chart.js line차트 y축설정

반응형

설정이 왜 안되나 했는데 option에 y축설정이 배열 예시가 많은데 예시를 따라했더니 적용이 안됨

왜 안되나? 배열이 아니고 그냥 단건형태로 설정해야지 적용되었음

공홈 보고 했으면 바로 적용되었을텐데 오래된 블로그 샘플소스들을 보고해서.... 시행착오를 겪음

https://www.chartjs.org/

 

Chart.js | Open source HTML5 Charts for your website

New in 2.0 New chart axis types Plot complex, sparse datasets on date time, logarithmic or even entirely custom scales with ease.

www.chartjs.org

https://www.chartjs.org/docs/latest/axes/

 

Axes | Chart.js

Axes Axes are an integral part of a chart. They are used to determine how data maps to a pixel value on the chart. In a cartesian chart, there is 1 or more X-axis and 1 or more Y-axis to map points onto the 2-dimensional canvas. These axes are known as 'ca

www.chartjs.org

chart.js 3.8.0

const option={
	scales:{
		yAxes:{
			ticks:{
				beginAtZero:true,
				stepSzie:20
			},
			title{
				display:true,
				text:'(단위:명)'
			}
		}
	}
}
반응형