$(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: 'Курс TMM, грн'}, 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: 'Курс TMM', data: [[1318032000000,2.79744],[1318118400000,2.79744],[1318204800000,2.79744],[1318291200000,2.79744],[1318377600000,2.79744],[1318464000000,2.79779],[1318550400000,2.79849],[1318636800000,2.79849],[1318723200000,2.79849],[1318809600000,2.79849],[1318896000000,2.79849],[1318982400000,2.79849],[1319068800000,2.79849],[1319155200000,2.79849],[1319241600000,2.79849],[1319328000000,2.79849],[1319414400000,2.79849],[1319500800000,2.79849],[1319587200000,2.79867],[1319673600000,2.79867],[1319760000000,2.79895]], 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: [[1318032000000, 2.797439],[1318032000000, 2.797439],[1318118400000, 2.797439],[1318204800000, 2.797439],[1318291200000, 2.797439],[1318377600000, 2.797439],[1318464000000, 2.797789],[1318550400000, 2.798491],[1318636800000, 2.798491],[1318723200000, 2.798491],[1318809600000, 2.798491],[1318896000000, 2.798491],[1318982400000, 2.798491],[1319068800000, 2.798491],[1319155200000, 2.798491],[1319241600000, 2.798491],[1319328000000, 2.798491],[1319414400000, 2.798491],[1319500800000, 2.798491],[1319587200000, 2.798667],[1319673600000, 2.798667],[1319760000000, 2.798947]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });