rotation (plotOptions properties)
Wordcloud 차트의 단어 회전 범위를 설정합니다. only wordcloud
Info
name |
type |
required |
description |
rotation |
number |
선택([0,90]) |
회전 각도 범위의 시작과 끝을 설정 |
Example
myChart.setOptions({
chart: {
type: "wordcloud"
},
plotOptions: {
wordcloud: {
orientation: 2,
rotation: [-45,0]
}
}
}, {
append: false
});
myChart.loadSearchData({
"ibchart": {
"data": [{
"series": [{
"seriesName": "WordCloud",
"pointName": "IBLeaders",
"value": 60
}]
}, {
"series": [{
"pointName": "아이비리더스",
"value": 50
}]
}, {
"series": [{
"pointName": "IB Sheet 7",
"value": 40
}]
}, {
"series": [{
"pointName": "IBChart(H) 7",
"value": 30
}]
}]
}
}, {
append: true
});

제공 버전
version |
desc |
7.3.1.0 |
wordcloud 차트에만 적용가능 |