$(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: [[1535760000000,7.6689],[1535846400000,7.6689],[1535932800000,7.6689],[1536019200000,7.67004],[1536105600000,7.65311],[1536192000000,7.60856],[1536278400000,7.60404],[1536364800000,7.62048],[1536451200000,7.62048],[1536537600000,7.62048],[1536624000000,7.5589],[1536710400000,7.5458],[1536796800000,7.53341],[1536883200000,7.5835],[1536969600000,7.64407],[1537056000000,7.64407],[1537142400000,7.64407],[1537228800000,7.64212],[1537315200000,7.6563],[1537401600000,7.63844],[1537488000000,7.69388],[1537574400000,7.68387],[1537660800000,7.68387],[1537747200000,7.68387],[1537833600000,7.69495],[1537920000000,7.69804],[1538006400000,7.7129],[1538092800000,7.74417],[1538179200000,7.65074],[1538265600000,7.65074]], 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: [[1535760000000, 7.668900],[1535760000000, 7.668900],[1535846400000, 7.668900],[1535932800000, 7.668900],[1536019200000, 7.670043],[1536105600000, 7.653115],[1536192000000, 7.608560],[1536278400000, 7.604043],[1536364800000, 7.620476],[1536451200000, 7.620476],[1536537600000, 7.620476],[1536624000000, 7.558900],[1536710400000, 7.545798],[1536796800000, 7.533407],[1536883200000, 7.583504],[1536969600000, 7.644070],[1537056000000, 7.644070],[1537142400000, 7.644070],[1537228800000, 7.642122],[1537315200000, 7.656304],[1537401600000, 7.638435],[1537488000000, 7.693883],[1537574400000, 7.683868],[1537660800000, 7.683868],[1537747200000, 7.683868],[1537833600000, 7.694946],[1537920000000, 7.698040],[1538006400000, 7.712897],[1538092800000, 7.744168],[1538179200000, 7.650739],[1538265600000, 7.650739]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });