123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453 |
- function drawLayer02Label(canvasObj,text,textBeginX,lineEndX){
- var colorValue = '#04918B';
- var ctx = canvasObj.getContext("2d");
- ctx.beginPath();
- ctx.arc(35,55,2,0,2*Math.PI);
- ctx.closePath();
- ctx.fillStyle = colorValue;
- ctx.fill();
- ctx.moveTo(35,55);
- ctx.lineTo(60,80);
- ctx.lineTo(lineEndX,80);
- ctx.lineWidth = 1;
- ctx.strokeStyle = colorValue;
- ctx.stroke();
- ctx.font='12px Georgia';
- ctx.fillStyle = colorValue;
- ctx.fillText(text,textBeginX,92);
- }
- //接入机型占比
- var COLOR = {
- MACHINE:{
- TYPE_A:'#0175EE',
- TYPE_B:'#D89446',
- TYPE_C:'#373693',
- TYPE_D:'#25AE4F',
- TYPE_E:'#06B5C6',
- TYPE_F:'#009E9A',
- TYPE_G:'#AC266F'
- }
- };
- function renderLegend(){
- drawLegend(COLOR.MACHINE.TYPE_A,25,'A机型');
- drawLegend(COLOR.MACHINE.TYPE_B,50,'B机型');
- drawLegend(COLOR.MACHINE.TYPE_C,75,'C机型');
- drawLegend(COLOR.MACHINE.TYPE_D,100,'D机型');
- drawLegend(COLOR.MACHINE.TYPE_E,125,'E机型');
- drawLegend(COLOR.MACHINE.TYPE_F,150,'F机型');
- drawLegend(COLOR.MACHINE.TYPE_G,175,'G机型');
- }
- function drawLegend(pointColor,pointY,text){
- var ctx = $("#layer03_left_01 canvas").get(0).getContext("2d");
- ctx.beginPath();
- ctx.arc(20,pointY,6,0,2*Math.PI);
- ctx.fillStyle = pointColor;
- ctx.fill();
- ctx.font='20px';
- ctx.fillStyle = '#FEFFFE';
- ctx.fillText(text,40,pointY+3);
- }
- //存储
- function renderLayer03Right(){
- drawLayer03Right($("#layer03_right_chart01 canvas").get(0),"#027825",0.66);
- drawLayer03Right($("#layer03_right_chart02 canvas").get(0),"#006DD6",0.52);
- drawLayer03Right($("#layer03_right_chart03 canvas").get(0),"#238681",0.34);
- }
- function drawLayer03Right(canvasObj,colorValue,rate){
- var ctx = canvasObj.getContext("2d");
-
- var circle = {
- x : 65, //圆心的x轴坐标值
- y : 80, //圆心的y轴坐标值
- r : 60 //圆的半径
- };
- //画扇形
- //ctx.sector(circle.x,circle.y,circle.r,1.5*Math.PI,(1.5+rate*2)*Math.PI);
- //ctx.fillStyle = colorValue;
- //ctx.fill();
- ctx.beginPath();
- ctx.arc(circle.x,circle.y,circle.r,0,Math.PI*2)
- ctx.lineWidth = 10;
- ctx.strokeStyle = '#052639';
- ctx.stroke();
- ctx.closePath();
- ctx.beginPath();
- ctx.arc(circle.x,circle.y,circle.r,1.5*Math.PI,(1.5+rate*2)*Math.PI)
- ctx.lineWidth = 10;
- ctx.lineCap = 'round';
- ctx.strokeStyle = colorValue;
- ctx.stroke();
- ctx.closePath();
-
- ctx.fillStyle = 'white';
- ctx.font = '20px Calibri';
- ctx.fillText(rate*100+'%',circle.x-15,circle.y+10);
- }
- function renderChartBar01(){
- var myChart = echarts.init(document.getElementById("layer03_left_02"));
- myChart.setOption(
- {
- title : {
- text: '',
- subtext: '',
- x:'center'
- },
- tooltip : {
- trigger: 'item',
- formatter: "{b} : {c} ({d}%)"
- },
- legend: {
- show:false,
- x : 'center',
- y : 'bottom',
- data:['A机型','B机型','C机型','D机型','E机型','F机型','G机型']
- },
- toolbox: {
- },
- label:{
- normal:{
- show: true,
- formatter: "{b} \n{d}%"
- }
- },
- calculable : true,
- color:[COLOR.MACHINE.TYPE_A,COLOR.MACHINE.TYPE_B,COLOR.MACHINE.TYPE_C,COLOR.MACHINE.TYPE_D,COLOR.MACHINE.TYPE_E,COLOR.MACHINE.TYPE_F,COLOR.MACHINE.TYPE_G],
- series : [
- {
- name:'',
- type:'pie',
- radius : [40, 80],
- center : ['50%', '50%'],
- //roseType : 'area',
- data:[
- {value:4600, name:'A机型'},
- {value:4600, name:'B机型'},
- {value:15600, name:'C机型'},
- {value:6600, name:'D机型'},
- {value:5700, name:'E机型'},
- {value:7600, name:'F机型'},
- {value:3500, name:'G机型'}
- ]
- }
- ]
- }
- );
- }
- /*
- function renderChartBar02(){
- var myChart = echarts.init(document.getElementById("layer03_left_03"));
- myChart.setOption(
- {
- title : {
- text: '',
- subtext: '',
- x:'center'
- },
- tooltip : {
- show:true,
- trigger: 'item',
- formatter: "上线率<br>{b} : {c} ({d}%)"
- },
- legend: {
- show:false,
- orient: 'vertical',
- left: 'left',
- data: ['A机型','B机型','C机型','D机型','E机型','F机型','G机型']
- },
- series : [
- {
- name: '',
- type: 'pie',
- radius : '50%',
- center: ['50%', '60%'],
- data:[
- {value:7600, name:'A机型'},
- {value:6600, name:'B机型'},
- {value:15600, name:'C机型'},
- {value:5700, name:'D机型'},
- {value:4600, name:'E机型'},
- {value:4600, name:'F机型'},
- {value:3500, name:'G机型'}
- ],
- itemStyle: {
- emphasis: {
- shadowBlur: 10,
- shadowOffsetX: 0,
- shadowColor: 'rgba(0, 0, 0, 0.5)'
- }
- }
- }
- ],
- color:[COLOR.MACHINE.TYPE_A,COLOR.MACHINE.TYPE_B,COLOR.MACHINE.TYPE_C,COLOR.MACHINE.TYPE_D,COLOR.MACHINE.TYPE_E,COLOR.MACHINE.TYPE_F,COLOR.MACHINE.TYPE_G]
- }
- );
- }*/
- function renderLayer04Left(){
- var myChart = echarts.init(document.getElementById("layer04_left_chart"));
- myChart.setOption(
- {
- title: {
- text: ''
- },
- tooltip : {
- trigger: 'axis'
- },
- legend: {
- data:[]
- },
- grid: {
- left: '3%',
- right: '4%',
- bottom: '5%',
- top:'4%',
- containLabel: true
- },
- xAxis :
- {
- type : 'category',
- boundaryGap : false,
- data : getLatestDays(31),
- axisLabel:{
- textStyle:{
- color:"white", //刻度颜色
- fontSize:8 //刻度大小
- },
- rotate:45,
- interval:2
- },
- axisTick:{show:false},
- axisLine:{
- show:true,
- lineStyle:{
- color: '#0B3148',
- width: 1,
- type: 'solid'
- }
- }
- },
- yAxis :
- {
- type : 'value',
- axisTick:{show:false},
- axisLabel:{
- textStyle:{
- color:"white", //刻度颜色
- fontSize:8 //刻度大小
- }
- },
- axisLine:{
- show:true,
- lineStyle:{
- color: '#0B3148',
- width: 1,
- type: 'solid'
- }
- },
- splitLine:{
- show:false
- }
- },
- tooltip:{
- formatter:'{c}',
- backgroundColor:'#FE8501'
- },
- series : [
- {
- name:'',
- type:'line',
- smooth:true,
- areaStyle:{
- normal:{
- color:new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#026B6F'}, {offset: 1, color: '#012138' }], false),
- opacity:0.2
- }
- },
- itemStyle : {
- normal : {
- color:'#009991'
- },
- lineStyle:{
- normal:{
- color:'#009895',
- opacity:1
- }
- }
- },
- symbol:'none',
- data:[48, 52, 45, 46, 89, 120, 110,100,88,96,88,45,78,67,89,103,104,56,45,104,112,132,120,110,89,95,90,89,102,110,110]
- }
- ]
- }
-
- );
- }
- function renderLayer04Right(){
- var myChart = echarts.init(document.getElementById("layer04_right_chart"));
- myChart.setOption({
- title: {
- text: ''
- },
- tooltip: {
- trigger: 'axis'
- },
- legend: {
- top:20,
- right:5,
- textStyle:{
- color:'white'
- },
- orient:'vertical',
- data:[
- {name:'网络',icon:'circle'},
- {name:'内存',icon:'circle'},
- {name:'CPU',icon:'circle'}
- ]
- },
- grid: {
- left: '3%',
- right: '16%',
- bottom: '3%',
- top:'3%',
- containLabel: true
- },
- xAxis: {
- type: 'category',
- boundaryGap: false,
- axisTick:{show:false},
- axisLabel:{
- textStyle:{
- color:"white", //刻度颜色
- fontSize:8 //刻度大小
- }
- },
- axisLine:{
- show:true,
- lineStyle:{
- color: '#0B3148',
- width: 1,
- type: 'solid'
- }
- },
- data: get10MinutesScale()
- },
- yAxis: {
- type: 'value',
- axisTick:{show:false},
- axisLabel:{
- textStyle:{
- color:"white", //刻度颜色
- fontSize:8 //刻度大小
- }
- },
- axisLine:{
- show:true,
- lineStyle:{
- color: '#0B3148',
- width: 1,
- type: 'solid'
- }
- },
- splitLine:{
- show:false
- }
- },
- series: [
- {
- name:'网络',
- type:'line',
- itemStyle : {
- normal : {
- color:'#F3891B'
- },
- lineStyle:{
- normal:{
- color:'#F3891B',
- opacity:1
- }
- }
- },
- data:[120, 132, 101, 134, 90, 230, 210]
- },
- {
- name:'内存',
- type:'line',
- itemStyle : {
- normal : {
- color:'#006AD4'
- },
- lineStyle:{
- normal:{
- color:'#F3891B',
- opacity:1
- }
- }
- },
- data:[220, 182, 191, 234, 290, 330, 310]
- },
- {
- name:'CPU',
- type:'line',
- itemStyle : {
- normal : {
- color:'#009895'
- },
- lineStyle:{
- normal:{
- color:'#009895',
- opacity:1
- }
- }
- },
- data:[150, 232, 201, 154, 190, 330, 410]
- }
- ]
- }
- );
- }
- function get10MinutesScale()
- {
- var currDate = new Date();
- var odd = currDate.getMinutes()%10;
- var returnArr = new Array();
- currDate.setMinutes(currDate.getMinutes()-odd);
- for(var i = 0; i <7; i++){
- returnArr.push(currDate.getHours()+":"+(currDate.getMinutes()<10?("0"+currDate.getMinutes()):currDate.getMinutes()));
- currDate.setMinutes(currDate.getMinutes()-10);
- }
- return returnArr;
- }
- function getLatestDays(num)
- {
- var currentDay = new Date();
- var returnDays = [];
- for (var i = 0 ; i < num ; i++)
- {
- currentDay.setDate(currentDay.getDate() - 1);
- returnDays.push((currentDay.getMonth()+1)+"/"+currentDay.getDate());
- }
- return returnDays;
- }
|