$(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: 'Курс LVL, грн'}, 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: 'Курс LVL', data: [[1101859200000,10.1651],[1101945600000,10.2042],[1102032000000,10.2239],[1102118400000,10.1846],[1102204800000,10.1846],[1102291200000,10.1846],[1102377600000,10.2634],[1102464000000,10.2436],[1102550400000,10.204],[1102636800000,10.1649],[1102723200000,null],[1102809600000,null],[1102896000000,null],[1102982400000,10.1648],[1103068800000,10.1648],[1103155200000,10.1648],[1103241600000,10.2235],[1103328000000,10.1646],[1103414400000,10.1646],[1103500800000,10.1646],[1103587200000,10.2035],[1103673600000,10.2231],[1103760000000,10.2035],[1103846400000,10.2231],[1103932800000,10.2429],[1104019200000,10.2429],[1104105600000,10.2429],[1104192000000,10.2429],[1104278400000,10.2627],[1104364800000,10.2822],[1104451200000,10.2818]], 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: [[1101859200000, 10.165134],[1101859200000, 10.165134],[1101945600000, 10.204231],[1102032000000, 10.223892],[1102118400000, 10.184645],[1102204800000, 10.184645],[1102291200000, 10.184645],[1102377600000, 10.263443],[1102464000000, 10.243629],[1102550400000, 10.204038],[1102636800000, 10.164943],[1102982400000, 10.164751],[1103068800000, 10.164751],[1103155200000, 10.164751],[1103241600000, 10.223507],[1103328000000, 10.164559],[1103414400000, 10.164559],[1103500800000, 10.164559],[1103587200000, 10.203462],[1103673600000, 10.223121],[1103760000000, 10.203462],[1103846400000, 10.223121],[1103932800000, 10.242857],[1104019200000, 10.242857],[1104105600000, 10.242857],[1104192000000, 10.242857],[1104278400000, 10.262669],[1104364800000, 10.282171],[1104451200000, 10.281783]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });