$(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: 'Курс NOK, грн'}, 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: 'Курс NOK', data: [[1370044800000,1.36534],[1370131200000,1.36534],[1370217600000,1.36534],[1370304000000,1.36861],[1370390400000,1.37735],[1370476800000,1.37337],[1370563200000,1.38309],[1370649600000,1.38899],[1370736000000,1.38899],[1370822400000,1.38899],[1370908800000,1.38701],[1370995200000,1.38032],[1371081600000,1.38451],[1371168000000,1.38631],[1371254400000,1.39167],[1371340800000,1.39167],[1371427200000,1.39167],[1371513600000,1.39633],[1371600000000,1.38946],[1371686400000,1.39587],[1371772800000,1.34405],[1371859200000,1.332],[1371945600000,1.332],[1372032000000,1.332],[1372118400000,1.332],[1372204800000,1.31554],[1372291200000,1.30994],[1372377600000,1.32172],[1372464000000,1.32172],[1372550400000,1.32172]], 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.365340],[1370044800000, 1.365340],[1370131200000, 1.365340],[1370217600000, 1.365340],[1370304000000, 1.368605],[1370390400000, 1.377352],[1370476800000, 1.373367],[1370563200000, 1.383092],[1370649600000, 1.388994],[1370736000000, 1.388994],[1370822400000, 1.388994],[1370908800000, 1.387014],[1370995200000, 1.380316],[1371081600000, 1.384515],[1371168000000, 1.386307],[1371254400000, 1.391674],[1371340800000, 1.391674],[1371427200000, 1.391674],[1371513600000, 1.396328],[1371600000000, 1.389464],[1371686400000, 1.395873],[1371772800000, 1.344046],[1371859200000, 1.331998],[1371945600000, 1.331998],[1372032000000, 1.331998],[1372118400000, 1.331998],[1372204800000, 1.315540],[1372291200000, 1.309939],[1372377600000, 1.321720],[1372464000000, 1.321720],[1372550400000, 1.321720]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });