$(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: 'Курс PLN, грн'}, 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: 'Курс PLN', data: [[1370044800000,2.42936],[1370131200000,2.42936],[1370217600000,2.42936],[1370304000000,2.4369],[1370390400000,2.47007],[1370476800000,2.4603],[1370563200000,2.45217],[1370649600000,2.4615],[1370736000000,2.4615],[1370822400000,2.4615],[1370908800000,2.48236],[1370995200000,2.4794],[1371081600000,2.49513],[1371168000000,2.49565],[1371254400000,2.51094],[1371340800000,2.51094],[1371427200000,2.51094],[1371513600000,2.5204],[1371600000000,2.51206],[1371686400000,2.51547],[1371772800000,2.44327],[1371859200000,2.43359],[1371945600000,2.43359],[1372032000000,2.43359],[1372118400000,2.43359],[1372204800000,2.43066],[1372291200000,2.39615],[1372377600000,2.41105],[1372464000000,2.41105],[1372550400000,2.41105]], 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, 2.429355],[1370044800000, 2.429355],[1370131200000, 2.429355],[1370217600000, 2.429355],[1370304000000, 2.436904],[1370390400000, 2.470066],[1370476800000, 2.460297],[1370563200000, 2.452166],[1370649600000, 2.461498],[1370736000000, 2.461498],[1370822400000, 2.461498],[1370908800000, 2.482355],[1370995200000, 2.479401],[1371081600000, 2.495135],[1371168000000, 2.495645],[1371254400000, 2.510942],[1371340800000, 2.510942],[1371427200000, 2.510942],[1371513600000, 2.520395],[1371600000000, 2.512064],[1371686400000, 2.515474],[1371772800000, 2.443267],[1371859200000, 2.433591],[1371945600000, 2.433591],[1372032000000, 2.433591],[1372118400000, 2.433591],[1372204800000, 2.430657],[1372291200000, 2.396152],[1372377600000, 2.411054],[1372464000000, 2.411054],[1372550400000, 2.411054]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });