$(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: 'Курс UZS, грн'}, 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: 'Курс UZS', data: [[1264982400000,0.005249],[1265068800000,0.005249],[1265155200000,0.005238],[1265241600000,0.005239],[1265328000000,0.005239],[1265414400000,0.005238],[1265500800000,0.005238],[1265587200000,0.005238],[1265673600000,0.005231],[1265760000000,0.005232],[1265846400000,0.005233],[1265932800000,0.005233],[1266019200000,0.005228],[1266105600000,0.005228],[1266192000000,0.005228],[1266278400000,0.005216],[1266364800000,0.005216],[1266451200000,0.005216],[1266537600000,0.005214],[1266624000000,0.005213],[1266710400000,0.005213],[1266796800000,0.005213],[1266883200000,0.005197],[1266969600000,0.005197],[1267056000000,0.005197],[1267142400000,0.005197],[1267228800000,0.005197],[1267315200000,0.005197]], 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: [[1264982400000, 0.005249],[1264982400000, 0.005249],[1265068800000, 0.005249],[1265155200000, 0.005238],[1265241600000, 0.005239],[1265328000000, 0.005239],[1265414400000, 0.005238],[1265500800000, 0.005238],[1265587200000, 0.005238],[1265673600000, 0.005231],[1265760000000, 0.005232],[1265846400000, 0.005233],[1265932800000, 0.005233],[1266019200000, 0.005228],[1266105600000, 0.005228],[1266192000000, 0.005228],[1266278400000, 0.005216],[1266364800000, 0.005216],[1266451200000, 0.005216],[1266537600000, 0.005214],[1266624000000, 0.005213],[1266710400000, 0.005213],[1266796800000, 0.005213],[1266883200000, 0.005197],[1266969600000, 0.005197],[1267056000000, 0.005197],[1267142400000, 0.005197],[1267228800000, 0.005197],[1267315200000, 0.005197]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });