$(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: 'Курс TRY, грн'}, 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: 'Курс TRY', data: [[1139184000000,3.80051],[1139270400000,3.80051],[1139356800000,3.79749],[1139443200000,3.78291],[1139529600000,3.79527],[1139616000000,3.80586],[1139702400000,3.80586],[1139788800000,3.80586],[1139875200000,3.79844],[1139961600000,3.80766],[1140048000000,3.77182],[1140134400000,3.79414],[1140220800000,3.80345],[1140307200000,3.80345],[1140393600000,3.80345],[1140480000000,3.83019],[1140566400000,3.83379],[1140652800000,3.79429],[1140739200000,3.83018],[1140825600000,3.82058],[1140912000000,3.82058],[1140998400000,3.82058],[1141084800000,3.83425]], 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, 3.800506],[1139184000000, 3.800506],[1139270400000, 3.800506],[1139356800000, 3.797491],[1139443200000, 3.782909],[1139529600000, 3.795267],[1139616000000, 3.805862],[1139702400000, 3.805862],[1139788800000, 3.805862],[1139875200000, 3.798444],[1139961600000, 3.807662],[1140048000000, 3.771816],[1140134400000, 3.794139],[1140220800000, 3.803451],[1140307200000, 3.803451],[1140393600000, 3.803451],[1140480000000, 3.830193],[1140566400000, 3.833788],[1140652800000, 3.794290],[1140739200000, 3.830184],[1140825600000, 3.820580],[1140912000000, 3.820580],[1140998400000, 3.820580],[1141084800000, 3.834247]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });