$(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: 'Курс RUB, грн'}, 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: 'Курс RUB', data: [[1326758400000,0.25329],[1326844800000,null],[1326931200000,null],[1327017600000,0.25382],[1327104000000,0.25536],[1327190400000,0.25536],[1327276800000,0.25536],[1327363200000,0.255],[1327449600000,0.25878],[1327536000000,0.26053],[1327622400000,0.26317],[1327708800000,0.26314],[1327795200000,0.26314],[1327881600000,0.26314],[1327968000000,0.26312]], 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, 0.253290],[1326758400000, 0.253290],[1327017600000, 0.253820],[1327104000000, 0.255360],[1327190400000, 0.255360],[1327276800000, 0.255360],[1327363200000, 0.255000],[1327449600000, 0.258780],[1327536000000, 0.260530],[1327622400000, 0.263170],[1327708800000, 0.263140],[1327795200000, 0.263140],[1327881600000, 0.263140],[1327968000000, 0.263120]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });