$(function () { BWA.ChartOptions = BWA.ChartOptions || {}; var A = BWA.ChartOptions.RefrigeratorAnalysis = BWA.ChartOptions.RefrigeratorAnalysis || {}; A.getCopLoadRateChartOptions = function (codeTimeType) { return { palette: 'Bright', legend: { visible: false }, argumentAxis: { max: 100, min: 0, title: { text: $G('loadRateWithUnit') } }, valueAxis: { title: { text: '냉동기 COP' } }, /*ㅇㄹㄴㅇ*/ series: { type: 'scatter', valueField: 'cop', argumentField: 'LoadRate', // 부하율 label: { visible: false, //customizeText: function() { // return this.argumentField + this.valueText; //} }, point: { size: 8 } }, tooltip: { enabled: true, }, crosshair: { enabled: true, width: 2, horizontalLine: { color: 'red', dashStyle: 'dash', visible: true }, verticalLine: { color: 'red', dashStyle: 'dash', visible: true }, label: { visible: true, backgroundColor: "#949494", font: { color: "#fff", size: 12, } } } }; }; });