Front/JS & jQuery

[js][Echarts] Line 차트 컬러 사용자 설정

오선지♬ 2024. 3. 28. 18:52
728x90
반응형
series: [
    {
        name: '건수',
        type: 'line',
        tooltip: {
            valueFormatter: function (value) {
                return value;
            }
        },
        yAxisIndex: 1,
        data: cnts,
        lineStyle: {
            color: 'blue' // Set the desired color for the line
        }
    }
]

 

lineStyle: {
            color: 'blue' // Set the desired color for the line
        }

 

color 값에 컬러코드값을 넣어도 된다.

728x90
반응형