$(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: 'Курс KZT, грн'}, 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: 'Курс KZT', data: [[1326758400000,0.053858],[1326844800000,null],[1326931200000,null],[1327017600000,0.053912],[1327104000000,0.053869],[1327190400000,0.053869],[1327276800000,0.053869],[1327363200000,0.053825],[1327449600000,0.053832],[1327536000000,0.053764],[1327622400000,0.053858],[1327708800000,0.05385],[1327795200000,0.05385],[1327881600000,0.05385],[1327968000000,0.053766]], 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.053858],[1326758400000, 0.053858],[1327017600000, 0.053912],[1327104000000, 0.053869],[1327190400000, 0.053869],[1327276800000, 0.053869],[1327363200000, 0.053825],[1327449600000, 0.053832],[1327536000000, 0.053764],[1327622400000, 0.053858],[1327708800000, 0.053850],[1327795200000, 0.053850],[1327881600000, 0.053850],[1327968000000, 0.053766]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });