$(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: 'Курс PLN, грн'}, 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: 'Курс PLN', data: [[1180656000000,1.78071],[1180742400000,1.77855],[1180828800000,1.77855],[1180915200000,1.77855],[1181001600000,1.79372],[1181088000000,1.79239],[1181174400000,1.78104],[1181260800000,1.77352],[1181347200000,1.75243],[1181433600000,1.75243],[1181520000000,1.75243],[1181606400000,null],[1181692800000,1.76042],[1181779200000,1.7492],[1181865600000,null],[1181952000000,null],[1182038400000,1.76407],[1182124800000,1.76407],[1182211200000,1.78081],[1182297600000,1.78278],[1182384000000,null],[1182470400000,1.78241],[1182556800000,1.79664],[1182643200000,1.79664],[1182729600000,1.79664],[1182816000000,1.79428],[1182902400000,1.79004],[1182988800000,1.78443],[1183075200000,1.78443],[1183161600000,1.78443]], 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: [[1180656000000, 1.780710],[1180656000000, 1.780710],[1180742400000, 1.778553],[1180828800000, 1.778553],[1180915200000, 1.778553],[1181001600000, 1.793717],[1181088000000, 1.792388],[1181174400000, 1.781043],[1181260800000, 1.773524],[1181347200000, 1.752429],[1181433600000, 1.752429],[1181520000000, 1.752429],[1181692800000, 1.760416],[1181779200000, 1.749201],[1182038400000, 1.764068],[1182124800000, 1.764068],[1182211200000, 1.780806],[1182297600000, 1.782783],[1182470400000, 1.782408],[1182556800000, 1.796640],[1182643200000, 1.796640],[1182729600000, 1.796640],[1182816000000, 1.794279],[1182902400000, 1.790035],[1182988800000, 1.784431],[1183075200000, 1.784431],[1183161600000, 1.784431]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });