$(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: 'Курс AUD, грн'}, 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: 'Курс AUD', data: [[1139184000000,3.76949],[1139270400000,3.76949],[1139356800000,3.75015],[1139443200000,3.72568],[1139529600000,3.72925],[1139616000000,3.74526],[1139702400000,3.74526],[1139788800000,3.74526],[1139875200000,3.72306],[1139961600000,3.72296],[1140048000000,3.74736],[1140134400000,3.72175],[1140220800000,3.71662],[1140307200000,3.71662],[1140393600000,3.71662],[1140480000000,3.74079],[1140566400000,3.73078],[1140652800000,3.71048],[1140739200000,3.74583],[1140825600000,3.74018],[1140912000000,3.74018],[1140998400000,3.74018],[1141084800000,3.72403]], 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: [[1139184000000, 3.769488],[1139184000000, 3.769488],[1139270400000, 3.769488],[1139356800000, 3.750149],[1139443200000, 3.725681],[1139529600000, 3.729250],[1139616000000, 3.745260],[1139702400000, 3.745260],[1139788800000, 3.745260],[1139875200000, 3.723064],[1139961600000, 3.722963],[1140048000000, 3.747363],[1140134400000, 3.721746],[1140220800000, 3.716617],[1140307200000, 3.716617],[1140393600000, 3.716617],[1140480000000, 3.740787],[1140566400000, 3.730783],[1140652800000, 3.710478],[1140739200000, 3.745834],[1140825600000, 3.740182],[1140912000000, 3.740182],[1140998400000, 3.740182],[1141084800000, 3.724029]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });