為您解碼網(wǎng)站建設的點點滴滴
發(fā)表日期:2019-11 文章編輯:小燈 瀏覽次數(shù):4721
直接上代碼
`function setOption(paramChart, title, chartType, xdata, ydata,yscale, dataFlag) {
let intervalVal = 0
if (dataFlag == 'staffAct') {
intervalVal = 'auto'
} else {
intervalVal = 0
}
const option = {
color: ['#fff'],
title: {
text: '',
x: 'left',
y: 'top',
padding: 5,
textStyle: {
fontSize: 12,
color: '#fff'
},
},
grid: {
left: '3%',
right: '5%',
bottom: 15,
top: 15,
containLabel: true
},
xAxis: {
type: 'category',
data: xdata,
axisLine: {
lineStyle: {
color: "#fff",
}
},
axisLabel: {
interval: intervalVal,
formatter: function (value) {
var reg = new RegExp("[\\u4E00-\\u9FFF]+", "g");
if (reg.test(value)){
return (value.length > 4 ? (value.slice(0, 4) + "...") : value)
}else{
return (value.length > 10 ? (value.slice(0, 10) + "...") : value)
}
},
rotate: -90,
fontSize:8,
}
},
yAxis: {
x: 'center',
type: 'value',
splitLine: {
lineStyle: {
type: 'dashed'
}
},
axisLine: {
lineStyle: {
color: "#fff",
}
},
axisLabel: {
fontSize: '12',
formatter: '{value}' + yscale
}
},
series: [{
type: chartType,
connectNulls: true,
// type: 'bar',
smooth: true,
barMaxWidth:15,
// label: {
// normal: {
// show: true,
// position: 'top'
// }
// },
label: {
normal: {
textStyle: {
fontSize: 12,
rich: {}
}
}
},
data: ydata,
}, ]
};
paramChart.setOption(option)
}`
data:
`
ecStaffAct: {
lazyLoad: true
},
ecHeat: {
lazyLoad: true
},
`
調(diào)用:
`getStaffActData() {
let self = this
let param = {}
app.wxreq(app.globalData.DOMAIN_PATH + app.globalData.--, param, 'POST').then(res => {
if (res.code == 0) {
let datas = []
let chartKey = []
let chartVal = []
datas = res.data.visitTimeList
if (datas && datas.length > 0) {
datas.forEach(item => {
chartKey.push(item.time.substring(item.time.length - 5))
chartVal.push(item.count)
});
} else {
chartVal.push(0)
}
self.init_ecStaffAct(chartKey, chartVal)
}
}).then(res => {
})
},`
日期:2019-11 瀏覽次數(shù):5528
日期:2019-11 瀏覽次數(shù):11984
日期:2019-11 瀏覽次數(shù):4353
日期:2019-11 瀏覽次數(shù):5388
日期:2019-11 瀏覽次數(shù):5261
日期:2019-11 瀏覽次數(shù):7183
日期:2019-11 瀏覽次數(shù):5166
日期:2019-11 瀏覽次數(shù):15770
日期:2019-11 瀏覽次數(shù):4721
日期:2019-11 瀏覽次數(shù):6520
日期:2019-11 瀏覽次數(shù):5374
日期:2019-11 瀏覽次數(shù):4565
日期:2019-11 瀏覽次數(shù):10764
日期:2019-11 瀏覽次數(shù):8321
日期:2019-11 瀏覽次數(shù):5081
日期:2019-11 瀏覽次數(shù):4314
日期:2019-11 瀏覽次數(shù):8955
日期:2019-11 瀏覽次數(shù):4650
日期:2019-11 瀏覽次數(shù):4847
日期:2019-11 瀏覽次數(shù):4867
日期:2019-11 瀏覽次數(shù):4480
日期:2019-11 瀏覽次數(shù):5028
日期:2019-11 瀏覽次數(shù):10284
日期:2019-11 瀏覽次數(shù):5461
日期:2019-11 瀏覽次數(shù):5438
日期:2019-11 瀏覽次數(shù):4887
日期:2019-11 瀏覽次數(shù):12333
日期:2019-11 瀏覽次數(shù):7356
日期:2019-11 瀏覽次數(shù):7905
日期:2019-11 瀏覽次數(shù):4858
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.