$(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: 'Курс TRY, грн'}, 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: 'Курс TRY', data: [[1180656000000,3.82209],[1180742400000,3.84691],[1180828800000,3.84691],[1180915200000,3.84691],[1181001600000,3.85309],[1181088000000,3.84345],[1181174400000,3.82301],[1181260800000,3.80381],[1181347200000,3.74056],[1181433600000,3.74056],[1181520000000,3.74056],[1181606400000,null],[1181692800000,3.78268],[1181779200000,3.75844],[1181865600000,null],[1181952000000,null],[1182038400000,3.81847],[1182124800000,3.81847],[1182211200000,3.87288],[1182297600000,3.8757],[1182384000000,null],[1182470400000,3.84577],[1182556800000,3.85665],[1182643200000,3.85665],[1182729600000,3.85665],[1182816000000,3.8384],[1182902400000,3.81292],[1182988800000,3.79413],[1183075200000,3.79413],[1183161600000,3.79413]], 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, 3.822090],[1180656000000, 3.822090],[1180742400000, 3.846910],[1180828800000, 3.846910],[1180915200000, 3.846910],[1181001600000, 3.853090],[1181088000000, 3.843453],[1181174400000, 3.823006],[1181260800000, 3.803808],[1181347200000, 3.740564],[1181433600000, 3.740564],[1181520000000, 3.740564],[1181692800000, 3.782681],[1181779200000, 3.758436],[1182038400000, 3.818475],[1182124800000, 3.818475],[1182211200000, 3.872880],[1182297600000, 3.875696],[1182470400000, 3.845774],[1182556800000, 3.856651],[1182643200000, 3.856651],[1182729600000, 3.856651],[1182816000000, 3.838399],[1182902400000, 3.812924],[1182988800000, 3.794135],[1183075200000, 3.794135],[1183161600000, 3.794135]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });