$(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: 'Курс CAD, грн'}, 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: 'Курс CAD', data: [[1095120000000,4.10807],[1095206400000,4.08955],[1095292800000,4.08955],[1095379200000,4.1053],[1095465600000,4.08882],[1095552000000,4.08882],[1095638400000,4.08882],[1095724800000,4.08592],[1095811200000,4.11027],[1095897600000,4.1261],[1095984000000,4.13921],[1096070400000,4.14893],[1096156800000,4.14893],[1096243200000,4.14893],[1096329600000,4.15671],[1096416000000,4.17629],[1096502400000,4.17641]], 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, 4.108070],[1095120000000, 4.108070],[1095206400000, 4.089550],[1095292800000, 4.089550],[1095379200000, 4.105300],[1095465600000, 4.088820],[1095552000000, 4.088820],[1095638400000, 4.088820],[1095724800000, 4.085920],[1095811200000, 4.110270],[1095897600000, 4.126100],[1095984000000, 4.139210],[1096070400000, 4.148930],[1096156800000, 4.148930],[1096243200000, 4.148930],[1096329600000, 4.156710],[1096416000000, 4.176290],[1096502400000, 4.176410]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });