$(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: [[1180656000000,1.96761],[1180742400000,1.96512],[1180828800000,1.96512],[1180915200000,1.96512],[1181001600000,1.97185],[1181088000000,1.97917],[1181174400000,1.97639],[1181260800000,1.9701],[1181347200000,1.9524],[1181433600000,1.9524],[1181520000000,1.9524],[1181606400000,null],[1181692800000,1.95181],[1181779200000,1.94333],[1181865600000,null],[1181952000000,null],[1182038400000,1.94728],[1182124800000,1.94728],[1182211200000,1.96044],[1182297600000,1.9603],[1182384000000,null],[1182470400000,1.95942],[1182556800000,1.96585],[1182643200000,1.96585],[1182729600000,1.96585],[1182816000000,1.96878],[1182902400000,1.96863],[1182988800000,1.96542],[1183075200000,1.96542],[1183161600000,1.96542]], 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, 1.967610],[1180656000000, 1.967610],[1180742400000, 1.965124],[1180828800000, 1.965124],[1180915200000, 1.965124],[1181001600000, 1.971852],[1181088000000, 1.979165],[1181174400000, 1.976386],[1181260800000, 1.970097],[1181347200000, 1.952400],[1181433600000, 1.952400],[1181520000000, 1.952400],[1181692800000, 1.951814],[1181779200000, 1.943331],[1182038400000, 1.947280],[1182124800000, 1.947280],[1182211200000, 1.960444],[1182297600000, 1.960297],[1182470400000, 1.959420],[1182556800000, 1.965855],[1182643200000, 1.965855],[1182729600000, 1.965855],[1182816000000, 1.968780],[1182902400000, 1.968634],[1182988800000, 1.965416],[1183075200000, 1.965416],[1183161600000, 1.965416]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });