$(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: [[1326758400000,12.3053],[1326844800000,null],[1326931200000,null],[1327017600000,12.3452],[1327104000000,12.3617],[1327190400000,12.3617],[1327276800000,12.3617],[1327363200000,12.4369],[1327449600000,12.448],[1327536000000,12.4276],[1327622400000,12.5329],[1327708800000,12.55],[1327795200000,12.55],[1327881600000,12.55],[1327968000000,12.5323]], 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: [[1326758400000, 12.305321],[1326758400000, 12.305321],[1327017600000, 12.345178],[1327104000000, 12.361722],[1327190400000, 12.361722],[1327276800000, 12.361722],[1327363200000, 12.436858],[1327449600000, 12.448043],[1327536000000, 12.427618],[1327622400000, 12.532926],[1327708800000, 12.549992],[1327795200000, 12.549992],[1327881600000, 12.549992],[1327968000000, 12.532300]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });