1 Star 0 Fork 0

小圣/yibinmobile

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pro_qushi_count.js 1.55 KB
一键复制 编辑 原始数据 按行查看 历史
小圣 提交于 2024-11-01 18:06 . 同步echats报表
(function(){
var dom =$('[data-label=pro_qushi_count]').get(0);
var myChart = echarts.init(dom);
var month = [];
for(var i=0;i<11;i++){
month.push("2024-"+(i+1));
}
var d1=[],d2=[],d3=[],d4=[];
for(var i=0;i<month.length;i++){
var pre = parseInt(Math.random() * 1000);
var real = parseInt(Math.random() * pre+1);
var rate = (real/pre * 100);
rate = rate.toFixed(2)
d1.push(pre);
d2.push(real);
d3.push(rate);
}
option = {
tooltip: {
trigger: 'axis'
},
legend: {
data: ['预计交付量', '实际交付量', '交付率'],
top: 'bottom',
},
grid: {
left: '3%',
top: '10%',
right: '4%',
bottom: '9%',
containLabel: true
},
xAxis: {
type: 'category',
boundaryGap: false,
data: month
},
yAxis: [{
type: 'value',
name:"项目量"
},{
type:"value",
name:"交付率%"
}],
series: [
{
name: '预计交付量',
type: 'bar',
smooth: true,
label: {
show: true,
position: 'inside'
},
data: d1
},
{
name: '实际交付量',
type: 'bar',
smooth: true,
label: {
show: true,
position: 'inside'
},
data: d2
},
{
name: '交付率',
type: 'line',
stack: 'Total',
smooth: true,
label: {
show: true,
position: 'inside'
},
data: d3,
yAxisIndex: 1,
tooltip: {
valueFormatter: function (value) {
return value+"%";
}
}
}
]
};
myChart.setOption(option);
})();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/intersd/yibinmobile.git
git@gitee.com:intersd/yibinmobile.git
intersd
yibinmobile
yibinmobile
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385