$(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: [[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]], 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: [[1096588800000, 0.727050],[1096588800000, 0.727050],[1096848000000, 0.729701],[1096934400000, 0.722059],[1097020800000, 0.722370],[1097107200000, 0.721440],[1097193600000, 0.721664],[1097280000000, 0.721664],[1097366400000, 0.721664],[1097452800000, 0.720743],[1097539200000, 0.726571],[1097625600000, 0.721378],[1097712000000, 0.718292],[1097798400000, 0.722464],[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.750200],[1098921600000, 0.752241],[1099008000000, 0.745924],[1099094400000, 0.746591],[1099180800000, 0.746591]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });