我正在使用wordcloud,我只是传递了一组我希望在文字云中显示而不被忽略的单词。例如, “文字”:“你是一个好人”所有的词都像“你”,“是”,“一个”,“好”,“人”。我怎样才能做到这一点??所有文件都在哪里?
答案 0 :(得分:4)
完全披露我是ZingChart团队的成员。
有一个名为min-length
的属性,默认值为2.您可以将值设置为1或0.我们在gallery中有一些很酷的例子。我们还有wordcloud文档here。
var myConfig = {
"graphset":[
{
"type":"wordcloud",
"options":{
"text":"you are a gg good person",
"max-items":200,
"min-length":1
}
}
]
};
zingchart.render({
id : 'myChart',
data : myConfig,
height: "100%",
width: "100%"
});
html,body,#myChart{
height: 100%;
width: 100%;
}
<!DOCTYPE html>
<html>
<head>
<!--Assets will be injected here on compile. Use the assets button above-->
<script src= "https://cdn.zingchart.com/zingchart.min.js"></script>
<script> zingchart.MODULESDIR = "https://cdn.zingchart.com/modules/";
</script>
<!--Inject End-->
</head>
<body>
<div id='myChart'></div>
</body>
</html>