spiralType (plotOptions properties)
Wordcloud 차트의 단어 배치 종류를 설정 합니다. only wordcloud
Info
name |
type |
required |
description |
spiralType |
string |
선택(archimedean) |
단어 배치 종류 |
Enum
value |
description |
rectangular |
사각형으로 배치 |
archimedean |
원형으로 배치 |
Example
myChart.setOptions({
chart: {
type: "wordcloud"
},
plotOptions: {
wordcloud: {
spiralType: "rectangular"
}
}
}, {
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 차트에만 적용 가능 |