$(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: 'Курс CHF, грн'}, 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: 'Курс CHF', data: [[1370044800000,8.37957],[1370131200000,8.37957],[1370217600000,8.37957],[1370304000000,8.34722],[1370390400000,8.4411],[1370476800000,8.44269],[1370563200000,8.48525],[1370649600000,8.6358],[1370736000000,8.6358],[1370822400000,8.6358],[1370908800000,8.51791],[1370995200000,8.62179],[1371081600000,8.61179],[1371168000000,8.65963],[1371254400000,8.62935],[1371340800000,8.62935],[1371427200000,8.62935],[1371513600000,8.66125],[1371600000000,8.68034],[1371686400000,8.69334],[1371772800000,8.56462],[1371859200000,8.5949],[1371945600000,8.5949],[1372032000000,8.5949],[1372118400000,8.5949],[1372204800000,8.55723],[1372291200000,8.48971],[1372377600000,8.45082],[1372464000000,8.45082],[1372550400000,8.45082]], 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, 8.379571],[1370044800000, 8.379571],[1370131200000, 8.379571],[1370217600000, 8.379571],[1370304000000, 8.347218],[1370390400000, 8.441103],[1370476800000, 8.442691],[1370563200000, 8.485245],[1370649600000, 8.635801],[1370736000000, 8.635801],[1370822400000, 8.635801],[1370908800000, 8.517913],[1370995200000, 8.621787],[1371081600000, 8.611788],[1371168000000, 8.659625],[1371254400000, 8.629352],[1371340800000, 8.629352],[1371427200000, 8.629352],[1371513600000, 8.661248],[1371600000000, 8.680340],[1371686400000, 8.693344],[1371772800000, 8.564624],[1371859200000, 8.594904],[1371945600000, 8.594904],[1372032000000, 8.594904],[1372118400000, 8.594904],[1372204800000, 8.557227],[1372291200000, 8.489711],[1372377600000, 8.450817],[1372464000000, 8.450817],[1372550400000, 8.450817]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });