$(function() { BWA.ChartOptions = BWA.ChartOptions || {}; BWA.ChartOptions.EnergySavingControl = BWA.ChartOptions.EnergySavingControl || {}; BWA.ChartOptions.EnergySavingControl.getChartControlCO2Options = function (codeTimeType) { return { palette: "Violet", legend: { visible: true, verticalAlignment: 'top', horizontalAlignment: 'center' }, //argumentAxis: BWA.Chart.getTimeLineArgumentAxis(null, codeTimeType), // ㅎㅎ 이게 있어야 멀티드로잉이 된다. 2015 04 21 commonSeriesSettings: { argumentField: "DateTime", selectionStyle: { hatching: { direction: "left" } } }, valueAxis: { name: 'co2', position: 'left', title: { text: 'CO2' } }, series: { axis: 'co2', type: 'bar', name: 'CO2', argumentField: "DateTime", valueField: 'co2', // label: { visible: false, }, point: { size: 8 } }, tooltip: { enabled: true, format: 'fixedPoint', precision: 2, }, }; }; });