$(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: 'Курс LTL, грн'}, 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: 'Курс LTL', data: [[1370044800000,3.0108],[1370131200000,3.0108],[1370217600000,3.0108],[1370304000000,3.01126],[1370390400000,3.03071],[1370476800000,3.02492],[1370563200000,3.03673],[1370649600000,3.0696],[1370736000000,3.0696],[1370822400000,3.0696],[1370908800000,3.0578],[1370995200000,3.07261],[1371081600000,3.07354],[1371168000000,3.08233],[1371254400000,3.07956],[1371340800000,3.07956],[1371427200000,3.07956],[1371513600000,3.08743],[1371600000000,3.09599],[1371686400000,3.1034],[1371772800000,3.05571],[1371859200000,3.05108],[1371945600000,3.05108],[1372032000000,3.05108],[1372118400000,3.05108],[1372204800000,3.04043],[1372291200000,3.01497],[1372377600000,3.01682],[1372464000000,3.01682],[1372550400000,3.01682]], 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, 3.010802],[1370044800000, 3.010802],[1370131200000, 3.010802],[1370217600000, 3.010802],[1370304000000, 3.011265],[1370390400000, 3.030710],[1370476800000, 3.024923],[1370563200000, 3.036729],[1370649600000, 3.069601],[1370736000000, 3.069601],[1370822400000, 3.069601],[1370908800000, 3.057795],[1370995200000, 3.072610],[1371081600000, 3.073536],[1371168000000, 3.082333],[1371254400000, 3.079555],[1371340800000, 3.079555],[1371427200000, 3.079555],[1371513600000, 3.087426],[1371600000000, 3.095991],[1371686400000, 3.103399],[1371772800000, 3.055711],[1371859200000, 3.051081],[1371945600000, 3.051081],[1372032000000, 3.051081],[1372118400000, 3.051081],[1372204800000, 3.040433],[1372291200000, 3.014968],[1372377600000, 3.016820],[1372464000000, 3.016820],[1372550400000, 3.016820]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });