$(document).ready(function () { chart = new Highcharts.StockChart({ chart: { renderTo: 'chart', type: 'line', animation: false, showAxes: true, height: 500 }, xAxis: { ordinal: false, type: 'datetime', showEmpty: true, gridLineWidth: 1, gridLineDashStyle: 'dot', ordinal: false }, yAxis: { title: {text: 'Курс SGD, грн'}, lineWidth: 3, gridLineWidth: 1, gridLineDashStyle: 'dash', ordinal: false }, plotOptions: { series: {connectNulls: true, shadow: false}, spline: {marker: {enabled: true}} }, tooltip: {valueDecimals: 8, xDateFormat: '%d %b %Y', shared: true}, series: [ { name: 'Курс SGD', data: [[1101859200000,3.24021],[1101945600000,3.2434],[1102032000000,3.24499],[1102118400000,3.23727],[1102204800000,3.23727],[1102291200000,3.23727],[1102377600000,3.24704],[1102464000000,3.2465],[1102550400000,3.22228],[1102636800000,3.21498],[1102723200000,null],[1102809600000,null],[1102896000000,null],[1102982400000,3.21917],[1103068800000,3.22707],[1103155200000,3.2345],[1103241600000,3.23605],[1103328000000,3.22197],[1103414400000,3.22197],[1103500800000,3.22197],[1103587200000,3.22729],[1103673600000,3.23277],[1103760000000,3.23668],[1103846400000,3.23815],[1103932800000,3.2361],[1104019200000,3.2361],[1104105600000,3.2361],[1104192000000,3.23499],[1104278400000,3.24775],[1104364800000,3.23427],[1104451200000,3.23871]], tooltip: {valueSuffix: ' грн'}, type: 'area', step: true, color: '#888888', fillColor: { linearGradient: {x1: 0, y1: 0, x2: 0, y2: 1}, stops: [[0, '#CCCCCC'], [1, 'rgba(50,50,50,0)']] }, threshold: null }, { name: 'Среднее за период', data: [[1101859200000, 3.240214],[1101859200000, 3.240214],[1101945600000, 3.243396],[1102032000000, 3.244993],[1102118400000, 3.237269],[1102204800000, 3.237269],[1102291200000, 3.237269],[1102377600000, 3.247042],[1102464000000, 3.246498],[1102550400000, 3.222279],[1102636800000, 3.214976],[1102982400000, 3.219169],[1103068800000, 3.227074],[1103155200000, 3.234499],[1103241600000, 3.236049],[1103328000000, 3.221968],[1103414400000, 3.221968],[1103500800000, 3.221968],[1103587200000, 3.227289],[1103673600000, 3.232766],[1103760000000, 3.236683],[1103846400000, 3.238155],[1103932800000, 3.236101],[1104019200000, 3.236101],[1104105600000, 3.236101],[1104192000000, 3.234993],[1104278400000, 3.247754],[1104364800000, 3.234270],[1104451200000, 3.238710]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });