$(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: 'Курс RUB, грн'}, 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: 'Курс RUB', data: [[1370044800000,0.25137],[1370131200000,0.25137],[1370217600000,0.25137],[1370304000000,0.2494],[1370390400000,0.25108],[1370476800000,0.24992],[1370563200000,0.2487],[1370649600000,0.24792],[1370736000000,0.24792],[1370822400000,0.24792],[1370908800000,0.24727],[1370995200000,0.24673],[1371081600000,0.24673],[1371168000000,0.2471],[1371254400000,0.25133],[1371340800000,0.25133],[1371427200000,0.25133],[1371513600000,0.25231],[1371600000000,0.2507],[1371686400000,0.24885],[1371772800000,0.2444],[1371859200000,0.24411],[1371945600000,0.24411],[1372032000000,0.24411],[1372118400000,0.24411],[1372204800000,0.24433],[1372291200000,0.24304],[1372377600000,0.24312],[1372464000000,0.24312],[1372550400000,0.24312]], 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: [[1370044800000, 0.251370],[1370044800000, 0.251370],[1370131200000, 0.251370],[1370217600000, 0.251370],[1370304000000, 0.249400],[1370390400000, 0.251080],[1370476800000, 0.249920],[1370563200000, 0.248700],[1370649600000, 0.247920],[1370736000000, 0.247920],[1370822400000, 0.247920],[1370908800000, 0.247270],[1370995200000, 0.246730],[1371081600000, 0.246730],[1371168000000, 0.247100],[1371254400000, 0.251330],[1371340800000, 0.251330],[1371427200000, 0.251330],[1371513600000, 0.252310],[1371600000000, 0.250700],[1371686400000, 0.248850],[1371772800000, 0.244400],[1371859200000, 0.244110],[1371945600000, 0.244110],[1372032000000, 0.244110],[1372118400000, 0.244110],[1372204800000, 0.244330],[1372291200000, 0.243040],[1372377600000, 0.243120],[1372464000000, 0.243120],[1372550400000, 0.243120]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });