function resource(count) { // const restServerBaseURL='http://71.3.21.232:8081'; $.get(restServerBaseURL + '/log/action/analyseResource?count=' + (count != undefined ? count : 5), function (data) { // var map = JSON.parse(data); var map = data.actionTypes; resourceChart.setOption(option = { /* color: 'blue', */ title: { show: false, text: '资源调用统计', left: '3%', textStyle: { color: '#73879a', fontSize: 25 }, }, tooltip: { trigger: 'axis' }, grid: { // left: '10%', // right: '5%', // bottom: '40%' // x:"-20", // y:"-20" }, xAxis: { axisLabel: { rotate: 50, textStyle: { color: '#73879a', fontSize: 10 }, axisLine: { lineStyle: { color: '#73879a' } } }, data: map.map(function (item) { return item.title; }) }, yAxis: { type: 'value', // max: 20, axisLabel: { textStyle: { color: '#73879a', fontSize: 14 } } }, series: { name: '资源调用次数', type: 'bar', data: map.map(function (item) { return item.count; }), markLine: { silent: true, lineStyle: { color: '#333' } } } }); }); // useractionchart.on("click", function (params) { // console.log("iframe 用户行为页面"); // var frameSrc = "./useraction.html?username=" + $("#UserName").val(); // $("#serverstatusiframe").attr("src", frameSrc); // $('#serverstatusModal').modal({ // show: true, // backdrop: 'static' // }); // }) }