Commit 8172c79b authored by youjie's avatar youjie
parents 2142b864 bd7b79af
......@@ -137,7 +137,7 @@ export default {
textStyle: {
color: "#969696"
},
formatter: '{value} %',
formatter: '{value}%',
margin: 20 // 标签距离y轴的距离为20
},
splitLine:{
......
......@@ -137,7 +137,7 @@ export default {
textStyle: {
color: "#969696"
},
formatter: '{value} %',
formatter: '{value}%',
margin: 20 // 标签距离y轴的距离为20
},
splitLine:{
......
<template>
<div class="echartsBox">
<div class="titleBox row">
<h3>毛利变化趋势图</h3>
<h3>毛利变化趋势图</h3>
<div style="margin-left: 20px;">
......@@ -78,11 +78,11 @@ export default {
label: {
show: true,
position: 'top', // 在顶部显示
formatter: '{c} %' // 格式化金额,{c} 代表数据值
formatter: '{c}w' // 格式化金额,{c} 代表数据值
},
data: x.MonthData.map(x=>{ return x }) // 绑定实时数据数组
data: x.MonthData.map(x=>{ return (x/10000).toFixed(2) }) // 绑定实时数据数组
}
if(x.Name=='毛利') datas.push(obj)
if(x.Name=='毛利') datas.push(obj)
if(indexs>6){
let name=x.Name;
Newobj[name]=false;
......@@ -144,7 +144,7 @@ export default {
textStyle: {
color: "#969696"
},
formatter: '{value} %',
formatter: '{value}w',
margin: 20 // 标签距离y轴的距离为20
},
splitLine:{
......
<template>
<div class="echartsBox">
<div class="titleBox row">
<h3>实际利变化趋势图</h3>
<h3>实际利变化趋势图</h3>
<div style="margin-left: 20px;">
......@@ -78,11 +78,11 @@ export default {
label: {
show: true,
position: 'top', // 在顶部显示
formatter: '{c} %' // 格式化金额,{c} 代表数据值
formatter: '{c}w' // 格式化金额,{c} 代表数据值
},
data: x.MonthData.map(x=>{ return x }) // 绑定实时数据数组
data: x.MonthData.map(x=>{ return (x/10000).toFixed(2) }) // 绑定实时数据数组
}
if(x.Name=='实际利') datas.push(obj)
if(x.Name=='实际利') datas.push(obj)
if(indexs>6){
let name=x.Name;
Newobj[name]=false;
......@@ -144,7 +144,7 @@ export default {
textStyle: {
color: "#969696"
},
formatter: '{value} %',
formatter: '{value}w',
margin: 20 // 标签距离y轴的距离为20
},
splitLine:{
......
......@@ -69,7 +69,7 @@ export default {
label: {
show: true,
position: 'top', // 在顶部显示
formatter: '{c} w' // 格式化金额,{c} 代表数据值
formatter: '{c}w' // 格式化金额,{c} 代表数据值
},
data: x.DetailList.map(y=>{return (y.JLR/10000).toFixed(2)}) // 绑定实时数据数组
}
......
......@@ -69,7 +69,7 @@ export default {
label: {
show: true,
position: 'top', // 在顶部显示
formatter: '{c} w' // 格式化金额,{c} 代表数据值
formatter: '{c}w' // 格式化金额,{c} 代表数据值
},
data: x.DetailList.map(y=>{return (y.FinalProfit/10000).toFixed(2)}) // 绑定实时数据数组
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment