$(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: 'Курс GBP, грн'}, 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: 'Курс GBP', data: [[1101859200000,10.1272],[1101945600000,10.2004],[1102032000000,10.2528],[1102118400000,10.2264],[1102204800000,10.2264],[1102291200000,10.2264],[1102377600000,10.3048],[1102464000000,10.3389],[1102550400000,10.2351],[1102636800000,10.2034],[1102723200000,null],[1102809600000,null],[1102896000000,null],[1102982400000,10.1697],[1103068800000,10.2184],[1103155200000,10.2742],[1103241600000,10.3607],[1103328000000,10.2613],[1103414400000,10.2613],[1103500800000,10.2613],[1103587200000,10.326],[1103673600000,10.2652],[1103760000000,10.1585],[1103846400000,10.1804],[1103932800000,10.2163],[1104019200000,10.2163],[1104105600000,10.2163],[1104192000000,10.2006],[1104278400000,10.2871],[1104364800000,10.1932],[1104451200000,10.1827]], 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, 10.127179],[1101859200000, 10.127179],[1101945600000, 10.200365],[1102032000000, 10.252775],[1102118400000, 10.226411],[1102204800000, 10.226411],[1102291200000, 10.226411],[1102377600000, 10.304828],[1102464000000, 10.338869],[1102550400000, 10.235117],[1102636800000, 10.203449],[1102982400000, 10.169738],[1103068800000, 10.218366],[1103155200000, 10.274209],[1103241600000, 10.360732],[1103328000000, 10.261348],[1103414400000, 10.261348],[1103500800000, 10.261348],[1103587200000, 10.326010],[1103673600000, 10.265186],[1103760000000, 10.158476],[1103846400000, 10.180357],[1103932800000, 10.216287],[1104019200000, 10.216287],[1104105600000, 10.216287],[1104192000000, 10.200619],[1104278400000, 10.287132],[1104364800000, 10.193224],[1104451200000, 10.182655]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });