$(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: 'Курс BYN, грн'}, 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: 'Курс BYN', data: [[1264982400000,0.00277],[1265068800000,0.00276],[1265155200000,0.00277],[1265241600000,0.00278],[1265328000000,0.00277],[1265414400000,0.00276],[1265500800000,0.00276],[1265587200000,0.00276],[1265673600000,0.00276],[1265760000000,0.00276],[1265846400000,0.00276],[1265932800000,0.00276],[1266019200000,0.00276],[1266105600000,0.00276],[1266192000000,0.00276],[1266278400000,0.00276],[1266364800000,0.00275],[1266451200000,0.00275],[1266537600000,0.00275],[1266624000000,0.00274],[1266710400000,0.00274],[1266796800000,0.00274],[1266883200000,0.00274],[1266969600000,0.00274],[1267056000000,0.00273],[1267142400000,0.00273],[1267228800000,0.00273],[1267315200000,0.00273]], 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: [[1264982400000, 0.002770],[1264982400000, 0.002770],[1265068800000, 0.002760],[1265155200000, 0.002770],[1265241600000, 0.002780],[1265328000000, 0.002770],[1265414400000, 0.002760],[1265500800000, 0.002760],[1265587200000, 0.002760],[1265673600000, 0.002760],[1265760000000, 0.002760],[1265846400000, 0.002760],[1265932800000, 0.002760],[1266019200000, 0.002760],[1266105600000, 0.002760],[1266192000000, 0.002760],[1266278400000, 0.002760],[1266364800000, 0.002750],[1266451200000, 0.002750],[1266537600000, 0.002750],[1266624000000, 0.002740],[1266710400000, 0.002740],[1266796800000, 0.002740],[1266883200000, 0.002740],[1266969600000, 0.002740],[1267056000000, 0.002730],[1267142400000, 0.002730],[1267228800000, 0.002730],[1267315200000, 0.002730]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });