$(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: [[1370044800000,7.67777],[1370131200000,7.67777],[1370217600000,7.67777],[1370304000000,7.72631],[1370390400000,7.72968],[1370476800000,7.6533],[1370563200000,7.60405],[1370649600000,7.61074],[1370736000000,7.61074],[1370822400000,7.61074],[1370908800000,7.55056],[1370995200000,7.46805],[1371081600000,7.61995],[1371168000000,7.64615],[1371254400000,7.68231],[1371340800000,7.68231],[1371427200000,7.68231],[1371513600000,7.68252],[1371600000000,7.56481],[1371686400000,7.59689],[1371772800000,7.36631],[1371859200000,7.36904],[1371945600000,7.36904],[1372032000000,7.36904],[1372118400000,7.36904],[1372204800000,7.41594],[1372291200000,7.41829],[1372377600000,7.443],[1372464000000,7.443],[1372550400000,7.443]],
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: [[1370044800000, 7.677766],[1370044800000, 7.677766],[1370131200000, 7.677766],[1370217600000, 7.677766],[1370304000000, 7.726309],[1370390400000, 7.729676],[1370476800000, 7.653296],[1370563200000, 7.604045],[1370649600000, 7.610741],[1370736000000, 7.610741],[1370822400000, 7.610741],[1370908800000, 7.550564],[1370995200000, 7.468048],[1371081600000, 7.619951],[1371168000000, 7.646152],[1371254400000, 7.682312],[1371340800000, 7.682312],[1371427200000, 7.682312],[1371513600000, 7.682520],[1371600000000, 7.564814],[1371686400000, 7.596892],[1371772800000, 7.366306],[1371859200000, 7.369036],[1371945600000, 7.369036],[1372032000000, 7.369036],[1372118400000, 7.369036],[1372204800000, 7.415941],[1372291200000, 7.418288],[1372377600000, 7.442999],[1372464000000, 7.442999],[1372550400000, 7.442999]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});