style (plotOptions properties)
Wordcloud 차트의 단어 스타일을 설정 합니다. only wordcloud
Info
name |
type |
required |
description |
style.fontFamily |
string |
선택 |
폰트 종류 (클라이언트 사용자에 있는 폰트만 유효(웹폰트 포함))
주의 Export 시 서버에 해당 폰트가 있어야 동일하게 출력이 가능 |
style.fontPadding |
number |
선택(1) |
단어간 여백 |
style.fontWeight |
string |
선택(bold) |
폰트 두께 |
Enum
value |
description |
normal |
폰트 두께를 얇게 설정 |
bold |
폰트 두께를 굵게 설정 |
Example
myChart.setOptions({
chart: {
type: "wordcloud"
},
plotOptions: {
wordcloud: {
style: {
fontFamily: "맑은 고딕",
fontWeight: "",
fontPadding: 0.2
}
}
}
}, {
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 차트에만 적용 가능 |