$(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: 'Курс SGD, грн'}, 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: 'Курс SGD', data: [[1180656000000,3.30051],[1180742400000,3.30211],[1180828800000,3.30211],[1180915200000,3.30211],[1181001600000,3.30217],[1181088000000,3.30384],[1181174400000,3.29729],[1181260800000,3.29109],[1181347200000,3.27261],[1181433600000,3.27261],[1181520000000,3.27261],[1181606400000,null],[1181692800000,3.2823],[1181779200000,3.27154],[1181865600000,null],[1181952000000,null],[1182038400000,3.27356],[1182124800000,3.27356],[1182211200000,3.28513],[1182297600000,3.28425],[1182384000000,null],[1182470400000,3.28629],[1182556800000,3.28496],[1182643200000,3.28496],[1182729600000,3.28496],[1182816000000,3.28396],[1182902400000,3.2842],[1182988800000,3.28295],[1183075200000,3.28295],[1183161600000,3.28295]], 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.300508],[1180656000000, 3.300508],[1180742400000, 3.302112],[1180828800000, 3.302112],[1180915200000, 3.302112],[1181001600000, 3.302168],[1181088000000, 3.303839],[1181174400000, 3.297287],[1181260800000, 3.291088],[1181347200000, 3.272608],[1181433600000, 3.272608],[1181520000000, 3.272608],[1181692800000, 3.282303],[1181779200000, 3.271543],[1182038400000, 3.273562],[1182124800000, 3.273562],[1182211200000, 3.285135],[1182297600000, 3.284252],[1182470400000, 3.286290],[1182556800000, 3.284956],[1182643200000, 3.284956],[1182729600000, 3.284956],[1182816000000, 3.283964],[1182902400000, 3.284196],[1182988800000, 3.282952],[1183075200000, 3.282952],[1183161600000, 3.282952]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });