Echarts3.0 쌓인 막대 차트에서 Y 축에 대한 백분율 표시
Vuejs2.0 컴포넌트의 Echarts3.0을 사용하여 누적 막대형 차트에서 y축에 백분율을 할당하려고 합니다.boundaryGap, splitnumber 등을 시도했지만 모두 효과가 없었습니다.하지만 나는 그것을 달성할 수 없습니다. 어떻게 하면 Y축에 %를 얻을 수 있는지 아는 사람 있나요?
export default {
data: () => ({
loading: true,
bar: {
xAxis: {
type: 'category',
data: ['Location1','Location2']
},
yAxis: {
type: 'value',
splitNumber: 10,
boundaryGap: ['0', '100%'],
min:0,
max:100,
scale:true,
splitArea : {show : true},
label: {
formatter: function(){
return 100 * value /$(this.axis.tickPositions).last()[0]
+ '%';
}
}
},
series: [
{
name: 'Location1',
type: 'bar',
stack: 'one',
label: {
normal: {
show: true,
position: 'insideRight'
}
},
data: [1100, 2050]
},
{
name: 'Location2',
type: 'bar',
stack: 'one',
label: {
normal: {
show: true,
position: 'insideRight'
}
},
data: [291064, 34789]
}
]
}
})
아래 형식으로 yAxis 설정
yAxis: [{
type: "value",
name: "%",
axisLabel: {
formatter: "{value} %"
}
}]
언급URL : https://stackoverflow.com/questions/43163882/echarts3-0-display-percent-on-y-axis-in-stacked-bar-chart
'programing' 카테고리의 다른 글
mysql에서 datetime 필드를 인덱싱하는 것이 좋은 생각입니까? (0) | 2023.01.10 |
---|---|
CPanel을 사용하여 크론 작업에서 PHP 파일 실행 (0) | 2023.01.10 |
오류 "Uncatched SyntaxError:JSON.parse에 예기치 않은 토큰이 있습니다. (0) | 2023.01.10 |
PHP에서 XML을 JSON으로 변환 (0) | 2023.01.10 |
Larabel 뷰 내에 등록된 모든 변수 나열 (0) | 2023.01.10 |