wordcloud에 사용되는 단어를 업데이트합니다.
{ibchart}.updateWords();
none
myChart.setOptions({
plotOptions: {
wordcloud: {
rotation: [-45,90], // default : [0,90]
orientation: 3, // default : 1
colorIterate: false, // default : true
colorSort: "rank", // "rank", "none" default: "none"
scaleType: "log", // "log", "sqrt", "linear" default: "none"
placeType: "random", // "random", "linear" default: "linear"
spiralType: "rectangular", // "rectangular", "archimedean" default : "archimedean"
valueRange: "responsive", // "responsive", [#,#] default: [15,60]
style: {
fontFamily: "나눔고딕", // default: "Lucida Grande"
fontWeight: "bold", // default: "bold"
fontPadding: 0.2 // default: 1
}
}
}
}, {
append: true // 이미 설정된 차트 속성은 유지
});
myChart.updateWords(); // plotOptions와 series(단어 데이터)만 업데이트
version | desc |
---|---|
7.3.1.0 | setSize 메소드 추가 |