$(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: [[1104883200000,0.0428905],[1104969600000,0.0508045],[1105056000000,0.0505682],[1105142400000,null],[1105228800000,0.0505682],[1105315200000,null],[1105401600000,0.0507994],[1105488000000,0.0510029],[1105574400000,0.0514503],[1105660800000,0.0517219],[1105747200000,0.0516983],[1105833600000,0.0516983],[1105920000000,0.0516983],[1106006400000,0.0519843],[1106092800000,0.0516673],[1106179200000,0.0515051],[1106265600000,0.0515051],[1106352000000,0.0510835],[1106438400000,0.0510835],[1106524800000,0.0510835],[1106611200000,null],[1106697600000,0.0512317],[1106784000000,0.0512976],[1106870400000,0.0512612],[1106956800000,0.05133],[1107043200000,0.05133],[1107129600000,0.0512253]], 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: [[1104883200000, 0.042890],[1104883200000, 0.042890],[1104969600000, 0.050805],[1105056000000, 0.050568],[1105228800000, 0.050568],[1105401600000, 0.050799],[1105488000000, 0.051003],[1105574400000, 0.051450],[1105660800000, 0.051722],[1105747200000, 0.051698],[1105833600000, 0.051698],[1105920000000, 0.051698],[1106006400000, 0.051984],[1106092800000, 0.051667],[1106179200000, 0.051505],[1106265600000, 0.051505],[1106352000000, 0.051083],[1106438400000, 0.051083],[1106524800000, 0.051083],[1106697600000, 0.051232],[1106784000000, 0.051298],[1106870400000, 0.051261],[1106956800000, 0.051330],[1107043200000, 0.051330],[1107129600000, 0.051225]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });