$(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: 'Курс JPY, грн'}, 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: 'Курс JPY', data: [[1101859200000,0.0516669],[1101945600000,0.0515535],[1102032000000,0.0516499],[1102118400000,0.051494],[1102204800000,0.051494],[1102291200000,0.051494],[1102377600000,0.0518577],[1102464000000,0.0516271],[1102550400000,0.0509061],[1102636800000,0.0507276],[1102723200000,null],[1102809600000,null],[1102896000000,null],[1102982400000,0.0506438],[1103068800000,0.0505798],[1103155200000,0.0508997],[1103241600000,0.051181],[1103328000000,0.0508618],[1103414400000,0.0508618],[1103500800000,0.0508618],[1103587200000,0.0509043],[1103673600000,0.0508158],[1103760000000,0.0510223],[1103846400000,0.0510401],[1103932800000,0.0512271],[1104019200000,0.0512271],[1104105600000,0.0512271],[1104192000000,0.0511412],[1104278400000,0.0514869],[1104364800000,0.051292],[1104451200000,0.0511768]], 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.051667],[1101859200000, 0.051667],[1101945600000, 0.051554],[1102032000000, 0.051650],[1102118400000, 0.051494],[1102204800000, 0.051494],[1102291200000, 0.051494],[1102377600000, 0.051858],[1102464000000, 0.051627],[1102550400000, 0.050906],[1102636800000, 0.050728],[1102982400000, 0.050644],[1103068800000, 0.050580],[1103155200000, 0.050900],[1103241600000, 0.051181],[1103328000000, 0.050862],[1103414400000, 0.050862],[1103500800000, 0.050862],[1103587200000, 0.050904],[1103673600000, 0.050816],[1103760000000, 0.051022],[1103846400000, 0.051040],[1103932800000, 0.051227],[1104019200000, 0.051227],[1104105600000, 0.051227],[1104192000000, 0.051141],[1104278400000, 0.051487],[1104364800000, 0.051292],[1104451200000, 0.051177]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });