$(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: [[1139184000000,0.17886],[1139270400000,0.17886],[1139356800000,0.17875],[1139443200000,0.17867],[1139529600000,0.17876],[1139616000000,0.17882],[1139702400000,0.17882],[1139788800000,0.17882],[1139875200000,0.17884],[1139961600000,0.17918],[1140048000000,0.17908],[1140134400000,0.17894],[1140220800000,0.17896],[1140307200000,0.17896],[1140393600000,0.17896],[1140480000000,0.17943],[1140566400000,0.17914],[1140652800000,0.17919],[1140739200000,0.17919],[1140825600000,0.17919],[1140912000000,0.17919],[1140998400000,0.17919],[1141084800000,0.17957]], 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: [[1139184000000, 0.178860],[1139184000000, 0.178860],[1139270400000, 0.178860],[1139356800000, 0.178750],[1139443200000, 0.178670],[1139529600000, 0.178760],[1139616000000, 0.178820],[1139702400000, 0.178820],[1139788800000, 0.178820],[1139875200000, 0.178840],[1139961600000, 0.179180],[1140048000000, 0.179080],[1140134400000, 0.178940],[1140220800000, 0.178960],[1140307200000, 0.178960],[1140393600000, 0.178960],[1140480000000, 0.179430],[1140566400000, 0.179140],[1140652800000, 0.179190],[1140739200000, 0.179190],[1140825600000, 0.179190],[1140912000000, 0.179190],[1140998400000, 0.179190],[1141084800000, 0.179570]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });