x축의 눈금에 소수점을 표시합니다.
name | type | required(default) | description |
---|---|---|---|
allowDecimals | boolean |
선택(false) | x축에 소수점 표시 여부 |
myChart.setOptions({
chart: {
type: "line"
},
xAxis: {
title: {
text: "단위(℃)",
align: "low",
rotation: 0,
style: {
color: "#575757",
fontSize: "10px"
}
},
allowDecimals: true // x축의 소수점 표시
}
}, {
append: true,
redraw: true
});
version | desc |
---|---|
7.3.0.0 |