$(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: 'Курс EUR, грн'}, 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: 'Курс EUR', data: [[1370044800000,10.3957],[1370131200000,10.3957],[1370217600000,10.3957],[1370304000000,10.3973],[1370390400000,10.4644],[1370476800000,10.4445],[1370563200000,10.4852],[1370649600000,10.5987],[1370736000000,10.5987],[1370822400000,10.5987],[1370908800000,10.558],[1370995200000,10.6091],[1371081600000,10.6123],[1371168000000,10.6427],[1371254400000,10.6331],[1371340800000,10.6331],[1371427200000,10.6331],[1371513600000,10.6603],[1371600000000,10.6898],[1371686400000,10.7154],[1371772800000,10.5508],[1371859200000,10.5348],[1371945600000,10.5348],[1372032000000,10.5348],[1372118400000,10.5348],[1372204800000,10.498],[1372291200000,10.4101],[1372377600000,10.4165],[1372464000000,10.4165],[1372550400000,10.4165]], 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, 10.395696],[1370044800000, 10.395696],[1370131200000, 10.395696],[1370217600000, 10.395696],[1370304000000, 10.397294],[1370390400000, 10.464436],[1370476800000, 10.444453],[1370563200000, 10.485217],[1370649600000, 10.598718],[1370736000000, 10.598718],[1370822400000, 10.598718],[1370908800000, 10.557954],[1370995200000, 10.609109],[1371081600000, 10.612306],[1371168000000, 10.642680],[1371254400000, 10.633088],[1371340800000, 10.633088],[1371427200000, 10.633088],[1371513600000, 10.660264],[1371600000000, 10.689838],[1371686400000, 10.715416],[1371772800000, 10.550760],[1371859200000, 10.534774],[1371945600000, 10.534774],[1372032000000, 10.534774],[1372118400000, 10.534774],[1372204800000, 10.498006],[1372291200000, 10.410083],[1372377600000, 10.416478],[1372464000000, 10.416478],[1372550400000, 10.416478]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });