$(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: 'Курс XDR, грн'}, 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: 'Курс XDR', data: [[1101859200000,8.14982],[1101945600000,8.1586],[1102032000000,8.17208],[1102118400000,8.14809],[1102204800000,8.14809],[1102291200000,8.14809],[1102377600000,8.19934],[1102464000000,8.20588],[1102550400000,8.14951],[1102636800000,8.13152],[1102723200000,null],[1102809600000,null],[1102896000000,null],[1102982400000,8.11866],[1103068800000,8.14106],[1103155200000,8.16079],[1103241600000,8.17892],[1103328000000,8.13666],[1103414400000,8.13666],[1103500800000,8.13666],[1103587200000,8.16604],[1103673600000,8.16892],[1103760000000,8.14595],[1103846400000,8.17716],[1103932800000,8.17716],[1104019200000,8.17716],[1104105600000,8.17716],[1104192000000,8.20252],[1104278400000,8.234],[1104364800000,8.21832],[1104451200000,8.21189]], 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, 8.149818],[1101859200000, 8.149818],[1101945600000, 8.158602],[1102032000000, 8.172085],[1102118400000, 8.148091],[1102204800000, 8.148091],[1102291200000, 8.148091],[1102377600000, 8.199336],[1102464000000, 8.205878],[1102550400000, 8.149515],[1102636800000, 8.131518],[1102982400000, 8.118662],[1103068800000, 8.141058],[1103155200000, 8.160792],[1103241600000, 8.178919],[1103328000000, 8.136660],[1103414400000, 8.136660],[1103500800000, 8.136660],[1103587200000, 8.166036],[1103673600000, 8.168915],[1103760000000, 8.145951],[1103846400000, 8.177161],[1103932800000, 8.177161],[1104019200000, 8.177161],[1104105600000, 8.177161],[1104192000000, 8.202520],[1104278400000, 8.234000],[1104364800000, 8.218321],[1104451200000, 8.211893]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });