$(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: 'Курс SEK, грн'}, 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: 'Курс SEK', data: [[1095120000000,0.714658],[1095206400000,0.712683],[1095292800000,0.712683],[1095379200000,0.707261],[1095465600000,0.711686],[1095552000000,0.711686],[1095638400000,0.711686],[1095724800000,0.709196],[1095811200000,0.719512],[1095897600000,0.717975],[1095984000000,0.722015],[1096070400000,0.722839],[1096156800000,0.722839],[1096243200000,0.722839],[1096329600000,0.718848],[1096416000000,0.722981],[1096502400000,0.722519],[1096588800000,0.72705],[1096675200000,null],[1096761600000,null],[1096848000000,0.729701],[1096934400000,0.722059],[1097020800000,0.72237],[1097107200000,0.72144],[1097193600000,0.721664],[1097280000000,0.721664],[1097366400000,0.721664],[1097452800000,0.720743],[1097539200000,0.726571],[1097625600000,0.721378],[1097712000000,0.718292],[1097798400000,0.722464],[1097884800000,null],[1097971200000,0.723307],[1098057600000,0.723307],[1098144000000,0.727532],[1098230400000,0.730923],[1098316800000,0.736329],[1098403200000,0.736804],[1098489600000,0.735581],[1098576000000,0.735581],[1098662400000,0.735581],[1098748800000,0.747791],[1098835200000,0.7502],[1098921600000,0.752241],[1099008000000,0.745924],[1099094400000,0.746591],[1099180800000,0.746591],[1099267200000,0.746591],[1099353600000,0.747277],[1099440000000,0.745605],[1099526400000,0.746763],[1099612800000,null],[1099699200000,null],[1099785600000,null],[1099872000000,null],[1099958400000,null],[1100044800000,0.759498],[1100131200000,0.759498],[1100217600000,0.758018],[1100304000000,0.764657],[1100390400000,0.764657],[1100476800000,0.764657],[1100563200000,0.767097],[1100649600000,0.767941],[1100736000000,0.770467],[1100822400000,0.770907],[1100908800000,0.770241],[1100995200000,0.770241],[1101081600000,0.770241],[1101168000000,0.772094],[1101254400000,0.776313],[1101340800000,0.781397],[1101427200000,0.785467],[1101513600000,0.787359],[1101600000000,0.787359],[1101686400000,0.787359],[1101772800000,0.78793],[1101859200000,0.790537],[1101945600000,0.78908],[1102032000000,0.787107],[1102118400000,0.788431],[1102204800000,0.788431],[1102291200000,0.788431],[1102377600000,0.80107],[1102464000000,0.801664],[1102550400000,0.787387],[1102636800000,0.784942],[1102723200000,null],[1102809600000,null],[1102896000000,null],[1102982400000,0.785057],[1103068800000,0.788854],[1103155200000,0.789327],[1103241600000,0.793458],[1103328000000,0.782146],[1103414400000,0.782146],[1103500800000,0.782146],[1103587200000,0.791933],[1103673600000,0.792306],[1103760000000,0.786889],[1103846400000,0.79086],[1103932800000,0.795253],[1104019200000,0.795253],[1104105600000,0.795253],[1104192000000,0.794883],[1104278400000,0.804873],[1104364800000,0.803251]], 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.716700],[1095206400000, 0.716700],[1097798400000, 0.731119],[1100476800000, 0.768385],[1103068800000, 0.791483]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });