$(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: 'Курс LVL, грн'}, 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: 'Курс LVL', data: [[1095120000000,9.74312],[1095206400000,9.74238],[1095292800000,9.74238],[1095379200000,9.7064],[1095465600000,9.72344],[1095552000000,9.72344],[1095638400000,9.72344],[1095724800000,9.7053],[1095811200000,9.70494],[1095897600000,9.70475],[1095984000000,9.73982],[1096070400000,9.73963],[1096156800000,9.73963],[1096243200000,9.73963],[1096329600000,9.73945],[1096416000000,9.73908],[1096502400000,9.7389],[1096588800000,9.75662],[1096675200000,null],[1096761600000,null],[1096848000000,9.73872],[1096934400000,9.79243],[1097020800000,9.75625],[1097107200000,9.72033],[1097193600000,9.73798],[1097280000000,9.73798],[1097366400000,9.73798],[1097452800000,9.71996],[1097539200000,9.77367],[1097625600000,9.77367],[1097712000000,9.75552],[1097798400000,9.7733],[1097884800000,null],[1097971200000,9.77293],[1098057600000,9.77293],[1098144000000,9.80887],[1098230400000,9.79078],[1098316800000,9.82704],[1098403200000,9.86338],[1098489600000,9.88175],[1098576000000,9.88175],[1098662400000,9.88175],[1098748800000,9.93727],[1098835200000,9.95591],[1098921600000,9.93727],[1099008000000,9.93727],[1099094400000,9.93727],[1099180800000,9.93727],[1099267200000,9.93727],[1099353600000,9.93727],[1099440000000,9.93727],[1099526400000,9.91869],[1099612800000,null],[1099699200000,null],[1099785600000,null],[1099872000000,null],[1099958400000,null],[1100044800000,9.99303],[1100131200000,9.99303],[1100217600000,9.97425],[1100304000000,9.99284],[1100390400000,9.99284],[1100476800000,9.99284],[1100563200000,10.0306],[1100649600000,10.0117],[1100736000000,10.0117],[1100822400000,10.0117],[1100908800000,10.0306],[1100995200000,10.0306],[1101081600000,10.0306],[1101168000000,10.0687],[1101254400000,10.0687],[1101340800000,10.0878],[1101427200000,10.1457],[1101513600000,10.2042],[1101600000000,10.2042],[1101686400000,10.2042],[1101772800000,10.1651],[1101859200000,10.1651],[1101945600000,10.2042],[1102032000000,10.2239],[1102118400000,10.1846],[1102204800000,10.1846],[1102291200000,10.1846],[1102377600000,10.2634],[1102464000000,10.2436],[1102550400000,10.204],[1102636800000,10.1649],[1102723200000,null],[1102809600000,null],[1102896000000,null],[1102982400000,10.1648],[1103068800000,10.1648],[1103155200000,10.1648],[1103241600000,10.2235],[1103328000000,10.1646],[1103414400000,10.1646],[1103500800000,10.1646],[1103587200000,10.2035],[1103673600000,10.2231],[1103760000000,10.2035],[1103846400000,10.2231],[1103932800000,10.2429],[1104019200000,10.2429],[1104105600000,10.2429],[1104192000000,10.2429],[1104278400000,10.2627],[1104364800000,10.2822]], 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: [[1095206400000, 9.729161],[1095206400000, 9.729161],[1097798400000, 9.817780],[1100476800000, 10.039027],[1103068800000, 10.210211]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });