為您解碼網(wǎng)站建設的點點滴滴
發(fā)表日期:2019-11 文章編輯:小燈 瀏覽次數(shù):4719
直接上代碼
`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ù):5524
日期:2019-11 瀏覽次數(shù):11982
日期:2019-11 瀏覽次數(shù):4351
日期:2019-11 瀏覽次數(shù):5385
日期:2019-11 瀏覽次數(shù):5260
日期:2019-11 瀏覽次數(shù):7180
日期:2019-11 瀏覽次數(shù):5165
日期:2019-11 瀏覽次數(shù):15768
日期:2019-11 瀏覽次數(shù):4718
日期:2019-11 瀏覽次數(shù):6517
日期:2019-11 瀏覽次數(shù):5371
日期:2019-11 瀏覽次數(shù):4564
日期:2019-11 瀏覽次數(shù):10763
日期:2019-11 瀏覽次數(shù):8320
日期:2019-11 瀏覽次數(shù):5079
日期:2019-11 瀏覽次數(shù):4311
日期:2019-11 瀏覽次數(shù):8952
日期:2019-11 瀏覽次數(shù):4648
日期:2019-11 瀏覽次數(shù):4845
日期:2019-11 瀏覽次數(shù):4865
日期:2019-11 瀏覽次數(shù):4477
日期:2019-11 瀏覽次數(shù):5026
日期:2019-11 瀏覽次數(shù):10282
日期:2019-11 瀏覽次數(shù):5459
日期:2019-11 瀏覽次數(shù):5437
日期:2019-11 瀏覽次數(shù):4884
日期:2019-11 瀏覽次數(shù):12330
日期:2019-11 瀏覽次數(shù):7354
日期:2019-11 瀏覽次數(shù):7904
日期:2019-11 瀏覽次數(shù):4857
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.