111
jihongshun
8 天以前 0c741cdda7ef9935a20d3090dfea97e1ce8ae754
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const dataText = JSON.stringify({
    xData:"Mon,Tue,Wed,Thu,Fri,Sat,Sun",
    yData: "120,200,150,80,70,110,130"
})
export default {
    cptDataForm:{
        dataSource: 1, pollTime: 0,
        dataText: dataText,
    },
    attribute:{
        title: '一天用电量分布',subtext:'纯属虚构',titleLeft: 'center', titleTop: 10,
        subtextColor: '#aaa',yTickShow: true,yGridLineShow:false,
        xLineShow: true, yLineShow: true, xTickShow:true,
        xLabelShow: true, yLabelShow: true,
        lineColor: '#409eff',xLabelColor:'#eee',xLineColor:'#eee',titleTextColor:'#ccc',
        yLabelColor:'#eee',yLineColor:'#eee',smooth:false,
        areaColor1:'rgba(80,141,255,0.39)',areaColor2:'rgba(56,155,255,0.25)',areaColor3:'rgba(38,197,254,0.00)',
    }
}