Highchart Waterfall Sample
프로그래밍/Jsp2016. 7. 8. 00:17
회사 업무차 사용하는 highchart waterfall 차트이다. $(function () { $('#container').highcharts({ chart: { type: 'waterfall' }, title: { text: 'Highcharts Waterfall' }, xAxis: { type: 'category' }, yAxis: { title: { text: 'USD' } }, legend: { enabled: false }, tooltip: { pointFormat: '${point.y:,.2f} USD' }, series: [{ upColor: Highcharts.getOptions().colors[2], color: Highcharts.getOptions().colors[3], data: ..