$(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: 'Курс CAD, грн'}, 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: 'Курс CAD', data: [[1180656000000,4.72183],[1180742400000,4.7333],[1180828800000,4.7333],[1180915200000,4.7333],[1181001600000,4.77716],[1181088000000,4.77711],[1181174400000,4.75843],[1181260800000,4.76789],[1181347200000,4.72705],[1181433600000,4.72705],[1181520000000,4.72705],[1181606400000,null],[1181692800000,4.7543],[1181779200000,4.71534],[1181865600000,null],[1181952000000,null],[1182038400000,4.74862],[1182124800000,4.74862],[1182211200000,4.70954],[1182297600000,4.73257],[1182384000000,null],[1182470400000,4.73012],[1182556800000,4.71009],[1182643200000,4.71009],[1182729600000,4.71009],[1182816000000,4.71284],[1182902400000,4.71969],[1182988800000,4.71787],[1183075200000,4.71787],[1183161600000,4.71787]], 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, 4.721827],[1180656000000, 4.721827],[1180742400000, 4.733296],[1180828800000, 4.733296],[1180915200000, 4.733296],[1181001600000, 4.777161],[1181088000000, 4.777113],[1181174400000, 4.758430],[1181260800000, 4.767891],[1181347200000, 4.727049],[1181433600000, 4.727049],[1181520000000, 4.727049],[1181692800000, 4.754303],[1181779200000, 4.715344],[1182038400000, 4.748619],[1182124800000, 4.748619],[1182211200000, 4.709539],[1182297600000, 4.732565],[1182470400000, 4.730116],[1182556800000, 4.710086],[1182643200000, 4.710086],[1182729600000, 4.710086],[1182816000000, 4.712843],[1182902400000, 4.719692],[1182988800000, 4.717874],[1183075200000, 4.717874],[1183161600000, 4.717874]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });