$(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: 'Курс USD, грн'}, 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: 'Курс USD', data: [[1101859200000,5.3062],[1101945600000,5.3062],[1102032000000,5.3062],[1102118400000,5.3062],[1102204800000,5.3062],[1102291200000,5.3062],[1102377600000,5.3062],[1102464000000,5.3062],[1102550400000,5.3061],[1102636800000,5.3061],[1102723200000,null],[1102809600000,null],[1102896000000,null],[1102982400000,5.306],[1103068800000,5.306],[1103155200000,5.306],[1103241600000,5.306],[1103328000000,5.3059],[1103414400000,5.3059],[1103500800000,5.3059],[1103587200000,5.3058],[1103673600000,5.3058],[1103760000000,5.3058],[1103846400000,5.3058],[1103932800000,5.3058],[1104019200000,5.3058],[1104105600000,5.3058],[1104192000000,5.3058],[1104278400000,5.3058],[1104364800000,5.3056],[1104451200000,5.3054]], 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: [[1101859200000, 5.306200],[1101859200000, 5.306200],[1101945600000, 5.306200],[1102032000000, 5.306200],[1102118400000, 5.306200],[1102204800000, 5.306200],[1102291200000, 5.306200],[1102377600000, 5.306200],[1102464000000, 5.306200],[1102550400000, 5.306100],[1102636800000, 5.306100],[1102982400000, 5.306000],[1103068800000, 5.306000],[1103155200000, 5.306000],[1103241600000, 5.306000],[1103328000000, 5.305900],[1103414400000, 5.305900],[1103500800000, 5.305900],[1103587200000, 5.305800],[1103673600000, 5.305800],[1103760000000, 5.305800],[1103846400000, 5.305800],[1103932800000, 5.305800],[1104019200000, 5.305800],[1104105600000, 5.305800],[1104192000000, 5.305800],[1104278400000, 5.305800],[1104364800000, 5.305600],[1104451200000, 5.305400]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });