$(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: 'Курс XDR, грн'}, 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: 'Курс XDR', data: [[1370044800000,11.9796],[1370131200000,11.9796],[1370217600000,11.9796],[1370304000000,11.9923],[1370390400000,12.0237],[1370476800000,12.0258],[1370563200000,12.0556],[1370649600000,12.1489],[1370736000000,12.1489],[1370822400000,12.1489],[1370908800000,12.1032],[1370995200000,12.1371],[1371081600000,12.1556],[1371168000000,12.1971],[1371254400000,12.1847],[1371340800000,12.1847],[1371427200000,12.1847],[1371513600000,12.199],[1371600000000,12.1995],[1371686400000,12.2071],[1371772800000,12.0963],[1371859200000,12.1064],[1371945600000,12.1064],[1372032000000,12.1064],[1372118400000,12.1064],[1372204800000,12.0767],[1372291200000,12.0305],[1372377600000,12.0196],[1372464000000,12.0196],[1372550400000,12.0196]], 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, 11.979647],[1370044800000, 11.979647],[1370131200000, 11.979647],[1370217600000, 11.979647],[1370304000000, 11.992336],[1370390400000, 12.023744],[1370476800000, 12.025842],[1370563200000, 12.055607],[1370649600000, 12.148875],[1370736000000, 12.148875],[1370822400000, 12.148875],[1370908800000, 12.103234],[1370995200000, 12.137087],[1371081600000, 12.155582],[1371168000000, 12.197076],[1371254400000, 12.184711],[1371340800000, 12.184711],[1371427200000, 12.184711],[1371513600000, 12.199012],[1371600000000, 12.199515],[1371686400000, 12.207060],[1371772800000, 12.096256],[1371859200000, 12.106406],[1371945600000, 12.106406],[1372032000000, 12.106406],[1372118400000, 12.106406],[1372204800000, 12.076736],[1372291200000, 12.030494],[1372377600000, 12.019585],[1372464000000, 12.019585],[1372550400000, 12.019585]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });