$(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: 'Курс ISK, грн'}, 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: 'Курс ISK', data: [[1264982400000,0.038522],[1265068800000,0.038377],[1265155200000,0.038449],[1265241600000,0.038582],[1265328000000,0.038204],[1265414400000,0.03777],[1265500800000,0.03777],[1265587200000,0.03777],[1265673600000,0.037759],[1265760000000,0.038003],[1265846400000,0.037951],[1265932800000,0.03789],[1266019200000,0.037452],[1266105600000,0.037452],[1266192000000,0.037452],[1266278400000,0.037546],[1266364800000,0.037664],[1266451200000,0.037876],[1266537600000,0.037425],[1266624000000,0.037284],[1266710400000,0.037284],[1266796800000,0.037284],[1266883200000,0.037543],[1266969600000,0.037407],[1267056000000,0.037324],[1267142400000,0.037165],[1267228800000,0.037388],[1267315200000,0.037388]], 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.038522],[1264982400000, 0.038522],[1265068800000, 0.038377],[1265155200000, 0.038449],[1265241600000, 0.038582],[1265328000000, 0.038204],[1265414400000, 0.037770],[1265500800000, 0.037770],[1265587200000, 0.037770],[1265673600000, 0.037759],[1265760000000, 0.038003],[1265846400000, 0.037951],[1265932800000, 0.037890],[1266019200000, 0.037452],[1266105600000, 0.037452],[1266192000000, 0.037452],[1266278400000, 0.037546],[1266364800000, 0.037664],[1266451200000, 0.037876],[1266537600000, 0.037425],[1266624000000, 0.037284],[1266710400000, 0.037284],[1266796800000, 0.037284],[1266883200000, 0.037543],[1266969600000, 0.037407],[1267056000000, 0.037324],[1267142400000, 0.037165],[1267228800000, 0.037388],[1267315200000, 0.037388]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });