1 Star 0 Fork 0

小圣/yibinmobile

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
qushi_amount.js 1.69 KB
一键复制 编辑 原始数据 按行查看 历史
小圣 提交于 2024-11-01 18:06 . 同步echats报表
(function(){
var dom =$('[data-label=qushi_amount]').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++){
d1.push(parseInt(Math.random() * 2000));
d2.push(parseInt(Math.random() * 2000));
d3.push(parseInt(Math.random() * 2000));
d4.push(parseInt(Math.random() * 2000));
}
option = {
color: ['#F9B848', '#00DDFF', '#37A2FF', '#E233AF'],
tooltip: {
trigger: 'axis'
},
legend: {
data: ['新增商机预估金额', '决策商机预估金额', '开标商机金额', '中标商机金额'],
top: 'bottom',
},
grid: {
left: '3%',
top: '6%',
right: '4%',
bottom: '9%',
containLabel: true
},
xAxis: {
type: 'category',
boundaryGap: false,
data: month
},
yAxis: {
type: 'value',
axisLabel: {
formatter: '¥{value}'
}
},
series: [
{
name: '新增商机预估金额',
type: 'bar',
smooth: false,
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: false,
label: {
show: true,
position: 'inside'
},
data: d3
},
{
name: '中标商机金额',
type: 'line',
stack: 'Total',
smooth: false,
label: {
show: true,
position: 'inside'
},
data: d4
}
]
};
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