$(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: 'Курс AZN, грн'}, 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: 'Курс AZN', data: [[1139184000000,5.52033],[1139270400000,5.52033],[1139356800000,5.52033],[1139443200000,5.52154],[1139529600000,5.52395],[1139616000000,5.52395],[1139702400000,5.52395],[1139788800000,5.52395],[1139875200000,5.52516],[1139961600000,5.52516],[1140048000000,5.52637],[1140134400000,5.52516],[1140220800000,5.52516],[1140307200000,5.52516],[1140393600000,5.52516],[1140480000000,5.52637],[1140566400000,5.52758],[1140652800000,5.52879],[1140739200000,5.5294],[1140825600000,5.5294],[1140912000000,5.5294],[1140998400000,5.5294],[1141084800000,5.53122]], 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, 5.520332],[1139184000000, 5.520332],[1139270400000, 5.520332],[1139356800000, 5.520332],[1139443200000, 5.521539],[1139529600000, 5.523955],[1139616000000, 5.523955],[1139702400000, 5.523955],[1139788800000, 5.523955],[1139875200000, 5.525164],[1139961600000, 5.525164],[1140048000000, 5.526373],[1140134400000, 5.525164],[1140220800000, 5.525164],[1140307200000, 5.525164],[1140393600000, 5.525164],[1140480000000, 5.526373],[1140566400000, 5.527583],[1140652800000, 5.528794],[1140739200000, 5.529399],[1140825600000, 5.529399],[1140912000000, 5.529399],[1140998400000, 5.529399],[1141084800000, 5.531216]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });