$(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: [[1180656000000,9.75835],[1180742400000,9.74742],[1180828800000,9.74742],[1180915200000,9.74742],[1181001600000,9.77939],[1181088000000,9.81143],[1181174400000,9.79906],[1181260800000,9.76788],[1181347200000,9.67596],[1181433600000,9.67596],[1181520000000,9.67596],[1181606400000,null],[1181692800000,9.68419],[1181779200000,9.63656],[1181865600000,null],[1181952000000,null],[1182038400000,9.65614],[1182124800000,9.65614],[1182211200000,9.72141],[1182297600000,9.72208],[1182384000000,null],[1182470400000,9.71773],[1182556800000,9.74965],[1182643200000,9.74965],[1182729600000,9.74965],[1182816000000,9.76416],[1182902400000,9.76343],[1182988800000,9.74747],[1183075200000,9.74747],[1183161600000,9.74747]], 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: [[1180656000000, 9.758352],[1180656000000, 9.758352],[1180742400000, 9.747421],[1180828800000, 9.747421],[1180915200000, 9.747421],[1181001600000, 9.779388],[1181088000000, 9.811429],[1181174400000, 9.799059],[1181260800000, 9.767878],[1181347200000, 9.675965],[1181433600000, 9.675965],[1181520000000, 9.675965],[1181692800000, 9.684186],[1181779200000, 9.636558],[1182038400000, 9.656140],[1182124800000, 9.656140],[1182211200000, 9.721413],[1182297600000, 9.722084],[1182470400000, 9.717732],[1182556800000, 9.749648],[1182643200000, 9.749648],[1182729600000, 9.749648],[1182816000000, 9.764155],[1182902400000, 9.763430],[1182988800000, 9.747472],[1183075200000, 9.747472],[1183161600000, 9.747472]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });