728x90
구현 결과
line, bar, pie 모두, 같은 세팅으로 적용 가능
차트 인스턴스
const chart = new Chart(ctx, {
type: 'bar',
// ...
legend: {
usePointStyle: true
}
)
dataset
let dataset = {
hoverBackgroundColor: [],
backgroundColor: [],
data: [],
pointStyle: 'Rounded', // 👈 원 타입 설정
pointRadius: 1, // 👈 The radius of the point shape. If set to 0, the point is not rendered.
};
pointStyle 타입
참고
https://www.chartjs.org/docs/latest/samples/legend/point-style.html
728x90
'자바스크립트' 카테고리의 다른 글
[Highcharts]linechart series (0) | 2022.02.14 |
---|---|
[highcharts] 차트 높이 수정 방법 (0) | 2022.02.08 |
node 버전 업그레이드 하는 방법 (0) | 2021.10.21 |
[Javascript][업무]파일 업로드 기능 구현하기 (0) | 2021.07.16 |
[Axios][업무][베트남🇻🇳] - Axios instance 생성하고 api 요청 함수 작성하는 방법 (0) | 2021.07.13 |
댓글