1.yjtjfx.html
预警数量统计
|
2.yjtjfxController.js
/**app.controller('warningCtrl', yjtjfxController);
3.yjtjChartConfig.js
app.value('yjtjChartConfig', {
version : 1.0,
calculable : false,
title : {
//text: '预警数量统计',
//subtext: '纯属虚构'
},
tooltip : {
show : false,
position:'top',
trigger: 'axis'
},
color:[
"#004b97"
],
toolbox: {
show : false,
feature : {
mark : {show: true},
dataView : {show: true, readOnly: false},
magicType : {show: true, type: ['line', 'bar']},
restore : {show: true},
saveAsImage : {show: true}
}
},
xAxis : [
{
type : 'category',
data : ['人流预警--','人员预警','偏高预警','高热预警','情报预警'],
splitLine : {
show : true
}
}
],
yAxis : [
{
type : 'value',
splitLine : {
show : true
}
}
],
series : [
{
//clickable: true,
itemStyle : {
normal:
{
label :
{
show: true,
position: 'top',
textStyle: {
color: '#004b97'
}
}
}
},
name:'数量统计',
type:'bar',
data:[0,1,2,3,4],//没有这个无法点击
/* markPoint : {
data : [
{type : 'min', name: '最小值'},
{type : 'max', name: '最大值'}
]
}*/
/* tooltip:{
axisPointer:{
crossStyle:{
}
}
}*/
},
]
});