CoreyJu opened a new issue #10640: 新版本的echarts设置字符云颜色随机不起作用 URL: https://github.com/apache/incubator-echarts/issues/10640 var option = { series: [ { type: ‘wordCloud‘, shape: ‘ellipse‘, gridSize: 8, textStyle: { normal: { fontFamily: ‘微软雅黑‘, color: function () { var colors = [‘#fda67e‘, ‘#81cacc‘, ‘#cca8ba‘, "#88cc81", "#82a0c5", ‘#fddb7e‘, ‘#735ba1‘, ‘#bda29a‘, ‘#6e7074‘, ‘#546570‘, ‘#c4ccd3‘]; return colors[parseInt(Math.random() * 10)]; } } }, data: cloudData } ] };
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
