$(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: 'Курс PLN, грн'}, 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: 'Курс PLN', data: [[1101859200000,1.67667],[1101945600000,1.68814],[1102032000000,1.69295],[1102118400000,1.6906],[1102204800000,1.6906],[1102291200000,1.6906],[1102377600000,1.70928],[1102464000000,1.71047],[1102550400000,1.67807],[1102636800000,1.68583],[1102723200000,null],[1102809600000,null],[1102896000000,null],[1102982400000,1.67535],[1103068800000,1.691],[1103155200000,1.70796],[1103241600000,1.70878],[1103328000000,1.69727],[1103414400000,1.69727],[1103500800000,1.69727],[1103587200000,1.72188],[1103673600000,1.73243],[1103760000000,1.73592],[1103846400000,1.75331],[1103932800000,1.76292],[1104019200000,1.76292],[1104105600000,1.76292],[1104192000000,1.7693],[1104278400000,1.78483],[1104364800000,1.7761],[1104451200000,1.77159]], 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, 1.676671],[1101859200000, 1.676671],[1101945600000, 1.688140],[1102032000000, 1.692949],[1102118400000, 1.690601],[1102204800000, 1.690601],[1102291200000, 1.690601],[1102377600000, 1.709277],[1102464000000, 1.710472],[1102550400000, 1.678068],[1102636800000, 1.685834],[1102982400000, 1.675353],[1103068800000, 1.690997],[1103155200000, 1.707961],[1103241600000, 1.708779],[1103328000000, 1.697274],[1103414400000, 1.697274],[1103500800000, 1.697274],[1103587200000, 1.721878],[1103673600000, 1.732427],[1103760000000, 1.735915],[1103846400000, 1.753312],[1103932800000, 1.762915],[1104019200000, 1.762915],[1104105600000, 1.762915],[1104192000000, 1.769298],[1104278400000, 1.784834],[1104364800000, 1.776103],[1104451200000, 1.771592]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });