텔레그램 알림받기 텔레그램 대화방 단톡방 배포요청


var options = { height : '100%', width : '100%', hAxis: { format: chartDateformat, title: '실거래월', textStyle:{fontSize:12} }, vAxis: {minValue: 100,viewWindow:{min:1000},gridlines:{count:-1}, title: '실거래최고가', textStyle:{fontSize:12} }, tooltip : {textStyle : {fontSize:12}, showColorCode : true,trigger: 'both'}, backgroundColor: '#f1f8e9' }; var date_formatter = new google.visualization.DateFormat({ pattern: chartDateformat}); date_formatter.format(data, 0); var chart = new google.visualization.LineChart(document.getElementById('chart_div')); chart.draw(data, options); }