$(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: 'Курс CNY, грн'}, 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: 'Курс CNY', data: [[1370044800000,1.3029],[1370131200000,1.3029],[1370217600000,1.3029],[1370304000000,1.30356],[1370390400000,1.30419],[1370476800000,1.3044],[1370563200000,1.30262],[1370649600000,1.30321],[1370736000000,1.30321],[1370822400000,1.30321],[1370908800000,1.30318],[1370995200000,1.30317],[1371081600000,1.30318],[1371168000000,1.30297],[1371254400000,1.30375],[1371340800000,1.30375],[1371427200000,1.30375],[1371513600000,1.305],[1371600000000,1.30423],[1371686400000,1.30455],[1371772800000,1.3043],[1371859200000,1.30329],[1371945600000,1.30329],[1372032000000,1.30329],[1372118400000,1.30329],[1372204800000,1.30076],[1372291200000,1.3002],[1372377600000,1.29991],[1372464000000,1.29991],[1372550400000,1.29991]], 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, 1.302898],[1370044800000, 1.302898],[1370131200000, 1.302898],[1370217600000, 1.302898],[1370304000000, 1.303556],[1370390400000, 1.304191],[1370476800000, 1.304399],[1370563200000, 1.302625],[1370649600000, 1.303207],[1370736000000, 1.303207],[1370822400000, 1.303207],[1370908800000, 1.303178],[1370995200000, 1.303170],[1371081600000, 1.303179],[1371168000000, 1.302973],[1371254400000, 1.303746],[1371340800000, 1.303746],[1371427200000, 1.303746],[1371513600000, 1.304998],[1371600000000, 1.304227],[1371686400000, 1.304547],[1371772800000, 1.304302],[1371859200000, 1.303293],[1371945600000, 1.303293],[1372032000000, 1.303293],[1372118400000, 1.303293],[1372204800000, 1.300755],[1372291200000, 1.300204],[1372377600000, 1.299915],[1372464000000, 1.299915],[1372550400000, 1.299915]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });