$(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: 'Курс HUF, грн'}, 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: 'Курс HUF', data: [[1101859200000,0.0287075],[1101945600000,0.0288121],[1102032000000,0.0289097],[1102118400000,0.0288345],[1102204800000,0.0288345],[1102291200000,0.0288345],[1102377600000,0.0290394],[1102464000000,0.0290552],[1102550400000,0.0287108],[1102636800000,0.0285555],[1102723200000,null],[1102809600000,null],[1102896000000,null],[1102982400000,0.0284778],[1103068800000,0.028656],[1103155200000,0.0288953],[1103241600000,0.0289459],[1103328000000,0.0286577],[1103414400000,0.0286577],[1103500800000,0.0286577],[1103587200000,0.0289801],[1103673600000,0.0290006],[1103760000000,0.0289011],[1103846400000,0.0290365],[1103932800000,0.0291781],[1104019200000,0.0291781],[1104105600000,0.0291781],[1104192000000,0.0292229],[1104278400000,0.0294184],[1104364800000,0.0293753],[1104451200000,0.0293835]], 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, 0.028708],[1101859200000, 0.028708],[1101945600000, 0.028812],[1102032000000, 0.028910],[1102118400000, 0.028834],[1102204800000, 0.028834],[1102291200000, 0.028834],[1102377600000, 0.029039],[1102464000000, 0.029055],[1102550400000, 0.028711],[1102636800000, 0.028556],[1102982400000, 0.028478],[1103068800000, 0.028656],[1103155200000, 0.028895],[1103241600000, 0.028946],[1103328000000, 0.028658],[1103414400000, 0.028658],[1103500800000, 0.028658],[1103587200000, 0.028980],[1103673600000, 0.029001],[1103760000000, 0.028901],[1103846400000, 0.029036],[1103932800000, 0.029178],[1104019200000, 0.029178],[1104105600000, 0.029178],[1104192000000, 0.029223],[1104278400000, 0.029418],[1104364800000, 0.029375],[1104451200000, 0.029383]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });