$(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: 'Курс RUB, грн'}, 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: 'Курс RUB', data: [[1101859200000,0.1885],[1101945600000,0.1894],[1102032000000,0.18954],[1102118400000,0.19],[1102204800000,0.19],[1102291200000,0.19],[1102377600000,0.19059],[1102464000000,0.19036],[1102550400000,0.18966],[1102636800000,0.18931],[1102723200000,null],[1102809600000,null],[1102896000000,null],[1102982400000,0.18866],[1103068800000,0.18953],[1103155200000,0.19011],[1103241600000,0.19061],[1103328000000,0.1903],[1103414400000,0.1903],[1103500800000,0.1903],[1103587200000,0.19023],[1103673600000,0.19025],[1103760000000,0.19059],[1103846400000,0.19062],[1103932800000,0.19068],[1104019200000,0.19068],[1104105600000,0.19068],[1104192000000,0.191],[1104278400000,0.19103],[1104364800000,0.1912],[1104451200000,0.19119]], 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.188500],[1101859200000, 0.188500],[1101945600000, 0.189400],[1102032000000, 0.189540],[1102118400000, 0.190000],[1102204800000, 0.190000],[1102291200000, 0.190000],[1102377600000, 0.190590],[1102464000000, 0.190360],[1102550400000, 0.189660],[1102636800000, 0.189310],[1102982400000, 0.188660],[1103068800000, 0.189530],[1103155200000, 0.190110],[1103241600000, 0.190610],[1103328000000, 0.190300],[1103414400000, 0.190300],[1103500800000, 0.190300],[1103587200000, 0.190230],[1103673600000, 0.190250],[1103760000000, 0.190590],[1103846400000, 0.190620],[1103932800000, 0.190680],[1104019200000, 0.190680],[1104105600000, 0.190680],[1104192000000, 0.191000],[1104278400000, 0.191030],[1104364800000, 0.191200],[1104451200000, 0.191190]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });