$(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: 'Курс AZN, грн'}, 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: 'Курс AZN', data: [[1388534400000,10.1887],[1388620800000,10.1887],[1388707200000,10.1887],[1388793600000,10.1887],[1388880000000,10.1887],[1388966400000,10.1887],[1389052800000,10.1887],[1389139200000,10.1887],[1389225600000,10.1887],[1389312000000,10.19],[1389398400000,10.19],[1389484800000,10.19],[1389571200000,10.19],[1389657600000,10.19],[1389744000000,10.1887],[1389830400000,10.1887],[1389916800000,10.1887],[1390003200000,10.19],[1390089600000,10.19],[1390176000000,10.19],[1390262400000,10.19],[1390348800000,10.19],[1390435200000,10.19],[1390521600000,10.1913],[1390608000000,10.1913],[1390694400000,10.1913],[1390780800000,10.1913],[1390867200000,10.1913],[1390953600000,10.1913],[1391040000000,10.1913],[1391126400000,10.1926]], 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: [[1388534400000, 10.188655],[1388534400000, 10.188655],[1388620800000, 10.188655],[1388707200000, 10.188655],[1388793600000, 10.188655],[1388880000000, 10.188655],[1388966400000, 10.188655],[1389052800000, 10.188655],[1389139200000, 10.188655],[1389225600000, 10.188655],[1389312000000, 10.189954],[1389398400000, 10.189954],[1389484800000, 10.189954],[1389571200000, 10.189954],[1389657600000, 10.189954],[1389744000000, 10.188655],[1389830400000, 10.188655],[1389916800000, 10.188655],[1390003200000, 10.189954],[1390089600000, 10.189954],[1390176000000, 10.189954],[1390262400000, 10.189954],[1390348800000, 10.189954],[1390435200000, 10.189954],[1390521600000, 10.191253],[1390608000000, 10.191253],[1390694400000, 10.191253],[1390780800000, 10.191253],[1390867200000, 10.191253],[1390953600000, 10.191253],[1391040000000, 10.191253],[1391126400000, 10.192553]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });