$(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: 'Курс USD, грн'}, 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: 'Курс USD', data: [[1264982400000,7.999],[1265068800000,7.9993],[1265155200000,8.0004],[1265241600000,8.0012],[1265328000000,8.0012],[1265414400000,8.0004],[1265500800000,8.0004],[1265587200000,8.0004],[1265673600000,8.0074],[1265760000000,8.0093],[1265846400000,8.01],[1265932800000,8.01],[1266019200000,8.0025],[1266105600000,8.0025],[1266192000000,8.0025],[1266278400000,8.002],[1266364800000,8.0024],[1266451200000,8.0024],[1266537600000,7.9997],[1266624000000,7.998],[1266710400000,7.998],[1266796800000,7.998],[1266883200000,7.9903],[1266969600000,7.99],[1267056000000,7.99],[1267142400000,7.99],[1267228800000,7.99],[1267315200000,7.99]], 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: [[1264982400000, 7.999000],[1264982400000, 7.999000],[1265068800000, 7.999300],[1265155200000, 8.000400],[1265241600000, 8.001200],[1265328000000, 8.001200],[1265414400000, 8.000400],[1265500800000, 8.000400],[1265587200000, 8.000400],[1265673600000, 8.007400],[1265760000000, 8.009300],[1265846400000, 8.010000],[1265932800000, 8.010000],[1266019200000, 8.002500],[1266105600000, 8.002500],[1266192000000, 8.002500],[1266278400000, 8.002000],[1266364800000, 8.002400],[1266451200000, 8.002400],[1266537600000, 7.999700],[1266624000000, 7.998000],[1266710400000, 7.998000],[1266796800000, 7.998000],[1266883200000, 7.990300],[1266969600000, 7.990000],[1267056000000, 7.990000],[1267142400000, 7.990000],[1267228800000, 7.990000],[1267315200000, 7.990000]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });