3 Star 1 Fork 0

shiftLife/group_shop2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
echarts.html 3.70 KB
一键复制 编辑 原始数据 按行查看 历史
shiftLife 提交于 2019-12-13 12:24 . init
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>罗氏投票DEMO页</title>
</head>
<body>
<style>
html,body {
height: 100%;
}
</style>
<div id="main" style="height:100%;"></div>
<script src="http://echarts.baidu.com/build/dist/echarts.js"></script>
<script type="text/javascript">
function createRandomItemStyle() {
return {
normal: {
color: 'rgb(' + [
Math.round(Math.random() * 160),
Math.round(Math.random() * 160),
Math.round(Math.random() * 160)
].join(',') + ')'
}
};
}
// 路径配置
require.config({
paths: {
echarts: 'http://echarts.baidu.com/build/dist'
}
});
// 使用
require(
[
'echarts',
'echarts/chart/wordCloud' // 使用柱状图就加载bar模块,按需加载
],
function (ec) {
// 基于准备好的dom,初始化echarts图表
var myChart = ec.init(document.getElementById('main'));
setInterval(function(){
option = {
title: {
text: '你印象最深刻的罗氏制药中国瞬间',
},
tooltip: {
show: true
},
series: [{
name: '罗氏制药',
type: 'wordCloud',
size: ['100%', '100%'],
textRotation : [0,0],
textPadding: 10,
autoSize: {
enable: true,
minSize: 10,
},
data: [
{
name: "1994 进入中国 Established in China",
value: Math.random()*1000+1,
itemStyle: {
normal: {
color: 'black'
}
}
},
{
name: "2007 率先在华建立完整医药价值产业链",
value: Math.random()*1000+1,
itemStyle: createRandomItemStyle()
},
{
name: "2011 本地生产希罗达出口欧洲和美国 China-made Xeloda Exported to Europe and U.S.",
value: Math.random()*1000+1,
itemStyle: createRandomItemStyle()
},
{
name: "2015 罗氏创新中心上海启动 Announce to build Roche Innovation Centre Shanghai",
value: Math.random()*1000+1,
itemStyle: createRandomItemStyle()
},
{
name: "Today 五款靶向药纳入国家医保目录 Five Targeted Drugs listed in NRDL",
value: Math.random()*1000+1,
itemStyle: createRandomItemStyle()
},
]
}]
};
},3000);
setInterval(function () {
myChart.setOption(option);
},3000)
// 为echarts对象加载数据
}
);
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/shiftlife/group_shop2.git
git@gitee.com:shiftlife/group_shop2.git
shiftlife
group_shop2
group_shop2
master

搜索帮助