$(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: 'Курс EUR, грн'}, 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: 'Курс EUR', data: [[1326758400000,10.219],[1326844800000,null],[1326931200000,null],[1327017600000,10.3156],[1327104000000,10.3084],[1327190400000,10.3084],[1327276800000,10.3084],[1327363200000,10.4003],[1327449600000,10.3891],[1327536000000,10.3404],[1327622400000,10.5026],[1327708800000,10.5025],[1327795200000,10.5025],[1327881600000,10.5025],[1327968000000,10.4745]], 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: [[1326758400000, 10.218954],[1326758400000, 10.218954],[1327017600000, 10.315631],[1327104000000, 10.308440],[1327190400000, 10.308440],[1327276800000, 10.308440],[1327363200000, 10.400323],[1327449600000, 10.389137],[1327536000000, 10.340399],[1327622400000, 10.502592],[1327708800000, 10.502461],[1327795200000, 10.502461],[1327881600000, 10.502461],[1327968000000, 10.474497]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });