$(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: [[1104883200000,3.7412],[1104969600000,3.82759],[1105056000000,3.79056],[1105142400000,null],[1105228800000,3.79056],[1105315200000,null],[1105401600000,3.82863],[1105488000000,3.84307],[1105574400000,3.85124],[1105660800000,3.90649],[1105747200000,3.92146],[1105833600000,3.92146],[1105920000000,3.92146],[1106006400000,3.96693],[1106092800000,3.96676],[1106179200000,3.92535],[1106265600000,3.92535],[1106352000000,3.92793],[1106438400000,3.92793],[1106524800000,3.92793],[1106611200000,null],[1106697600000,3.98029],[1106784000000,3.9751],[1106870400000,3.93877],[1106956800000,3.97861],[1107043200000,3.97861],[1107129600000,3.96864]], 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: [[1104883200000, 3.741199],[1104883200000, 3.741199],[1104969600000, 3.827594],[1105056000000, 3.790559],[1105228800000, 3.790559],[1105401600000, 3.828631],[1105488000000, 3.843071],[1105574400000, 3.851241],[1105660800000, 3.906489],[1105747200000, 3.921460],[1105833600000, 3.921460],[1105920000000, 3.921460],[1106006400000, 3.966930],[1106092800000, 3.966758],[1106179200000, 3.925351],[1106265600000, 3.925351],[1106352000000, 3.927926],[1106438400000, 3.927926],[1106524800000, 3.927926],[1106697600000, 3.980291],[1106784000000, 3.975095],[1106870400000, 3.938767],[1106956800000, 3.978612],[1107043200000, 3.978612],[1107129600000, 3.968641]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });