$(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: 'Курс AUD, грн'}, 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: 'Среднее за период', data: [[1088640000000, 3.971561],[1088640000000, 3.971561],[1120176000000, 3.902400],[1151712000000, 3.804159],[1183248000000, 4.235929],[1214870400000, 4.291542],[1246406400000, 6.206246],[1277942400000, 7.298816],[1309478400000, 8.119955],[1341100800000, 8.278671],[1372636800000, 7.744329],[1404172800000, 10.620535],[1435708800000, 16.462214],[1467331200000, 19.012106],[1498867200000, 20.374207],[1530403200000, 20.337253],[1561939200000, 18.598159]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });