$(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: 'Курс XDR, грн'}, 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: 'Курс XDR', data: [[1180656000000,7.63993],[1180742400000,7.63728],[1180828800000,7.63728],[1180915200000,7.63728],[1181001600000,7.64751],[1181088000000,7.66197],[1181174400000,7.66631],[1181260800000,7.65371],[1181347200000,7.61463],[1181433600000,7.61463],[1181520000000,7.61463],[1181606400000,null],[1181692800000,7.61788],[1181779200000,7.59611],[1181865600000,null],[1181952000000,null],[1182038400000,7.59906],[1182124800000,7.59906],[1182211200000,7.623],[1182297600000,7.62346],[1182384000000,null],[1182470400000,7.6214],[1182556800000,7.63098],[1182643200000,7.63098],[1182729600000,7.63098],[1182816000000,7.64274],[1182902400000,7.64644],[1182988800000,7.64342],[1183075200000,7.64342],[1183161600000,7.64342]], 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: [[1180656000000, 7.639928],[1180656000000, 7.639928],[1180742400000, 7.637282],[1180828800000, 7.637282],[1180915200000, 7.637282],[1181001600000, 7.647506],[1181088000000, 7.661975],[1181174400000, 7.666313],[1181260800000, 7.653707],[1181347200000, 7.614630],[1181433600000, 7.614630],[1181520000000, 7.614630],[1181692800000, 7.617881],[1181779200000, 7.596110],[1182038400000, 7.599059],[1182124800000, 7.599059],[1182211200000, 7.622998],[1182297600000, 7.623459],[1182470400000, 7.621399],[1182556800000, 7.630981],[1182643200000, 7.630981],[1182729600000, 7.630981],[1182816000000, 7.642738],[1182902400000, 7.646441],[1182988800000, 7.643420],[1183075200000, 7.643420],[1183161600000, 7.643420]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });