$(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: 'Курс CAD, грн'}, 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: 'Курс CAD', data: [[1139184000000,4.41442],[1139270400000,4.41442],[1139356800000,4.40248],[1139443200000,4.36974],[1139529600000,4.39347],[1139616000000,4.39466],[1139702400000,4.39466],[1139788800000,4.39466],[1139875200000,4.369],[1139961600000,4.35777],[1140048000000,4.37711],[1140134400000,4.35766],[1140220800000,4.36489],[1140307200000,4.36489],[1140393600000,4.36489],[1140480000000,4.39348],[1140566400000,4.39898],[1140652800000,4.39654],[1140739200000,4.40172],[1140825600000,4.38023],[1140912000000,4.38023],[1140998400000,4.38023],[1141084800000,4.40416]], 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, 4.414421],[1139184000000, 4.414421],[1139270400000, 4.414421],[1139356800000, 4.402479],[1139443200000, 4.369742],[1139529600000, 4.393474],[1139616000000, 4.394656],[1139702400000, 4.394656],[1139788800000, 4.394656],[1139875200000, 4.368998],[1139961600000, 4.357768],[1140048000000, 4.377108],[1140134400000, 4.357655],[1140220800000, 4.364893],[1140307200000, 4.364893],[1140393600000, 4.364893],[1140480000000, 4.393482],[1140566400000, 4.398983],[1140652800000, 4.396536],[1140739200000, 4.401724],[1140825600000, 4.380226],[1140912000000, 4.380226],[1140998400000, 4.380226],[1141084800000, 4.404165]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });