$(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: 'Курс CAD, грн'}, 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: 'Курс CAD', data: [[1212969600000,4.75676],[1213056000000,4.74322],[1213142400000,4.71396],[1213228800000,4.77261],[1213315200000,4.73483],[1213401600000,4.7276],[1213488000000,4.7276],[1213574400000,4.7276],[1213660800000,4.7276],[1213747200000,4.75025],[1213833600000,4.76],[1213920000000,4.78116],[1214006400000,4.78986],[1214092800000,4.78986],[1214179200000,4.78986],[1214265600000,4.77373],[1214352000000,4.77154],[1214438400000,4.79225],[1214524800000,4.79766],[1214611200000,4.8177],[1214697600000,4.8177],[1214784000000,4.8177]], 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, 4.756761],[1212969600000, 4.756761],[1213056000000, 4.743221],[1213142400000, 4.713961],[1213228800000, 4.772606],[1213315200000, 4.734831],[1213401600000, 4.727602],[1213488000000, 4.727602],[1213574400000, 4.727602],[1213660800000, 4.727602],[1213747200000, 4.750253],[1213833600000, 4.760000],[1213920000000, 4.781158],[1214006400000, 4.789865],[1214092800000, 4.789865],[1214179200000, 4.789865],[1214265600000, 4.773731],[1214352000000, 4.771543],[1214438400000, 4.792251],[1214524800000, 4.797663],[1214611200000, 4.817696],[1214697600000, 4.817696],[1214784000000, 4.817696]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });