$(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: 'Курс EUR, грн'}, 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: 'Курс EUR', data: [[1139184000000,6.0504],[1139270400000,6.0504],[1139356800000,6.04636],[1139443200000,6.03374],[1139529600000,6.04586],[1139616000000,6.04485],[1139702400000,6.04485],[1139788800000,6.04485],[1139875200000,6.00344],[1139961600000,6.00849],[1140048000000,6.01152],[1140134400000,5.98829],[1140220800000,5.99081],[1140307200000,5.99081],[1140393600000,5.99081],[1140480000000,6.02566],[1140566400000,6.01253],[1140652800000,5.99688],[1140739200000,6.03829],[1140825600000,6.00748],[1140912000000,6.00748],[1140998400000,6.00748],[1141084800000,5.98526]], 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, 6.050405],[1139184000000, 6.050405],[1139270400000, 6.050405],[1139356800000, 6.046365],[1139443200000, 6.033740],[1139529600000, 6.045860],[1139616000000, 6.044850],[1139702400000, 6.044850],[1139788800000, 6.044850],[1139875200000, 6.003440],[1139961600000, 6.008490],[1140048000000, 6.011520],[1140134400000, 5.988290],[1140220800000, 5.990815],[1140307200000, 5.990815],[1140393600000, 5.990815],[1140480000000, 6.025660],[1140566400000, 6.012530],[1140652800000, 5.996875],[1140739200000, 6.038285],[1140825600000, 6.007480],[1140912000000, 6.007480],[1140998400000, 6.007480],[1141084800000, 5.985260]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });