$(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: [[1543622400000,7.47278],[1543708800000,7.47278],[1543795200000,7.47278],[1543881600000,7.45763],[1543968000000,7.49337],[1544054400000,7.41689],[1544140800000,7.37998],[1544227200000,7.37591],[1544313600000,7.37591],[1544400000000,7.37591],[1544486400000,7.39382],[1544572800000,7.33658],[1544659200000,7.33986],[1544745600000,7.38208],[1544832000000,7.31005],[1544918400000,7.31005],[1545004800000,7.31005],[1545091200000,7.38312],[1545177600000,7.39419],[1545264000000,7.38011],[1545350400000,7.36502],[1545436800000,7.30744],[1545523200000,7.30744],[1545609600000,7.30744],[1545696000000,7.30744],[1545782400000,7.30744],[1545868800000,7.25987],[1545955200000,7.27338],[1546041600000,7.37058],[1546128000000,7.37058],[1546214400000,7.37058]], 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: [[1543622400000, 7.472783],[1543622400000, 7.472783],[1543708800000, 7.472783],[1543795200000, 7.472783],[1543881600000, 7.457625],[1543968000000, 7.493372],[1544054400000, 7.416887],[1544140800000, 7.379982],[1544227200000, 7.375906],[1544313600000, 7.375906],[1544400000000, 7.375906],[1544486400000, 7.393822],[1544572800000, 7.336577],[1544659200000, 7.339857],[1544745600000, 7.382079],[1544832000000, 7.310046],[1544918400000, 7.310046],[1545004800000, 7.310046],[1545091200000, 7.383123],[1545177600000, 7.394185],[1545264000000, 7.380115],[1545350400000, 7.365024],[1545436800000, 7.307436],[1545523200000, 7.307436],[1545609600000, 7.307436],[1545696000000, 7.307436],[1545782400000, 7.307436],[1545868800000, 7.259870],[1545955200000, 7.273380],[1546041600000, 7.370581],[1546128000000, 7.370581],[1546214400000, 7.370581]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });