$(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: 'Курс CZK, грн'}, 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: 'Курс CZK', data: [[1095120000000,0.205293],[1095206400000,0.206959],[1095292800000,0.206959],[1095379200000,0.205428],[1095465600000,0.206118],[1095552000000,0.206118],[1095638400000,0.206118],[1095724800000,0.205358],[1095811200000,0.207028],[1095897600000,0.206436],[1095984000000,0.207242],[1096070400000,0.20696],[1096156800000,0.20696],[1096243200000,0.20696],[1096329600000,0.205914],[1096416000000,0.20713],[1096502400000,0.2068],[1096588800000,0.208029],[1096675200000,null],[1096761600000,null],[1096848000000,0.208373],[1096934400000,0.207145],[1097020800000,0.207553],[1097107200000,0.207428],[1097193600000,0.20805],[1097280000000,0.20805],[1097366400000,0.20805],[1097452800000,0.208409],[1097539200000,0.209558],[1097625600000,0.208179],[1097712000000,0.206867],[1097798400000,0.208884],[1097884800000,null],[1097971200000,0.209347],[1098057600000,0.209347],[1098144000000,0.210824],[1098230400000,0.2112],[1098316800000,0.212176],[1098403200000,0.212139],[1098489600000,0.211816],[1098576000000,0.211816],[1098662400000,0.211816],[1098748800000,0.215037],[1098835200000,0.214353],[1098921600000,0.214846],[1099008000000,0.213338],[1099094400000,0.21433],[1099180800000,0.21433],[1099267200000,0.21433],[1099353600000,0.214978],[1099440000000,0.21426],[1099526400000,0.215121],[1099612800000,null],[1099699200000,null],[1099785600000,null],[1099872000000,null],[1099958400000,null],[1100044800000,0.219124],[1100131200000,0.219124],[1100217600000,0.217254],[1100304000000,0.217586],[1100390400000,0.217586],[1100476800000,0.217586],[1100563200000,0.218505],[1100649600000,0.219228],[1100736000000,0.220629],[1100822400000,0.221025],[1100908800000,0.221908],[1100995200000,0.221908],[1101081600000,0.221908],[1101168000000,0.222437],[1101254400000,0.223911],[1101340800000,0.224865],[1101427200000,0.226222],[1101513600000,0.226628],[1101600000000,0.226628],[1101686400000,0.226628],[1101772800000,0.2266],[1101859200000,0.227656],[1101945600000,0.227668],[1102032000000,0.228667],[1102118400000,0.229221],[1102204800000,0.229221],[1102291200000,0.229221],[1102377600000,0.231562],[1102464000000,0.23237],[1102550400000,0.228504],[1102636800000,0.229332],[1102723200000,null],[1102809600000,null],[1102896000000,null],[1102982400000,0.22999],[1103068800000,0.230855],[1103155200000,0.231999],[1103241600000,0.23222],[1103328000000,0.231163],[1103414400000,0.231163],[1103500800000,0.231163],[1103587200000,0.23303],[1103673600000,0.233056],[1103760000000,0.232349],[1103846400000,0.233316],[1103932800000,0.236096],[1104019200000,0.236096],[1104105600000,0.236096],[1104192000000,0.234893],[1104278400000,0.236672],[1104364800000,0.236756]], 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, 0.206458],[1095206400000, 0.206458],[1097798400000, 0.210403],[1100476800000, 0.220639],[1103068800000, 0.232064]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });