endAngle (pane properties)
앵글의 마지막 점을 설정합니다.
Info
name |
type |
required (default) |
description |
endAngle |
number |
선택 |
앵글의 마지막 점 |
Example
myChart.setOptions({
chart: {
type: "gauge"
},
pane: {
startAngle: -120,
endAngle: 120,
},
yAxis: {
min: 960,
max: 1060,
gridLineWidth: 0,
plotBands: [{
from: 960,
to: 1030,
color: '#55BF3B'
}, {
from: 1030,
to: 1050,
color: '#DDDF0D'
}, {
from: 1050,
to: 1060,
color: '#DF5353'
}],
title: {
text: "hPa"
}
},
tooltip: {
pointFormat: "{point.y} hPa"
},
series: [{
name: "hPa",
data: [999]
}]
}, {
append: true,
redraw: true
});
제공 버전