$(function() { BWA.ChartOptions = BWA.ChartOptions || {}; var A = BWA.ChartOptions.RefrigeratorAnalysis = BWA.ChartOptions.RefrigeratorAnalysis || {}; A.getGasLoadRateChartOptions = function(codeTimeType) { return { palette: "Soft Pastel", legend: { visible: false }, argumentAxis: { max: 100, min: 0, title: { text: $G('loadRateWithUnit') } }, valueAxis: { title: { text: '가스량' } }, series: { type: 'scatter', valueField: 'm', // 가스량 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, } } } }; }; });