$(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: [[1212969600000,10.7841],[1213056000000,10.8902],[1213142400000,10.7193],[1213228800000,10.7231],[1213315200000,10.6562],[1213401600000,10.5447],[1213488000000,10.5447],[1213574400000,10.5447],[1213660800000,10.5447],[1213747200000,10.6447],[1213833600000,10.6749],[1213920000000,10.6707],[1214006400000,10.7717],[1214092800000,10.7717],[1214179200000,10.7717],[1214265600000,10.7149],[1214352000000,10.7473],[1214438400000,10.7703],[1214524800000,10.8519],[1214611200000,10.8405],[1214697600000,10.8405],[1214784000000,10.8405]], 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: [[1212969600000, 10.784072],[1212969600000, 10.784072],[1213056000000, 10.890241],[1213142400000, 10.719281],[1213228800000, 10.723070],[1213315200000, 10.656236],[1213401600000, 10.544695],[1213488000000, 10.544695],[1213574400000, 10.544695],[1213660800000, 10.544695],[1213747200000, 10.644659],[1213833600000, 10.674862],[1213920000000, 10.670675],[1214006400000, 10.771744],[1214092800000, 10.771744],[1214179200000, 10.771744],[1214265600000, 10.714903],[1214352000000, 10.747349],[1214438400000, 10.770283],[1214524800000, 10.851906],[1214611200000, 10.840499],[1214697600000, 10.840499],[1214784000000, 10.840499]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });