$(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: 'Курс AUD', data: [[1095120000000,3.70323],[1095206400000,3.71266],[1095292800000,3.71266],[1095379200000,3.69945],[1095465600000,3.717],[1095552000000,3.717],[1095638400000,3.717],[1095724800000,3.71004],[1095811200000,3.73629],[1095897600000,3.73707],[1095984000000,3.78784],[1096070400000,3.79427],[1096156800000,3.79427],[1096243200000,3.79427],[1096329600000,3.78384],[1096416000000,3.80871],[1096502400000,3.80228]], 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: [[1095120000000, 3.703230],[1095120000000, 3.703230],[1095206400000, 3.712660],[1095292800000, 3.712660],[1095379200000, 3.699450],[1095465600000, 3.717000],[1095552000000, 3.717000],[1095638400000, 3.717000],[1095724800000, 3.710040],[1095811200000, 3.736290],[1095897600000, 3.737070],[1095984000000, 3.787840],[1096070400000, 3.794270],[1096156800000, 3.794270],[1096243200000, 3.794270],[1096329600000, 3.783840],[1096416000000, 3.808710],[1096502400000, 3.802280]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });