$(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: 'Курс AZN, грн'},
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: 'Курс AZN',
data: [[1168041600000,5.79527],[1168128000000,5.79527],[1168214400000,5.79527],[1168300800000,5.79527],[1168387200000,5.79527],[1168473600000,5.79527],[1168560000000,5.79527],[1168646400000,5.79527],[1168732800000,5.79527],[1168819200000,5.79527],[1168905600000,5.79527],[1168992000000,5.79527],[1169078400000,5.79527],[1169164800000,5.79594],[1169251200000,5.7966],[1169337600000,5.7966],[1169424000000,5.7966],[1169510400000,5.7966],[1169596800000,5.7966],[1169683200000,5.7966],[1169769600000,5.79727],[1169856000000,5.79727],[1169942400000,5.79727],[1170028800000,5.79727],[1170115200000,5.79793],[1170201600000,5.7986]],
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: [[1168041600000, 5.795272],[1168041600000, 5.795272],[1168128000000, 5.795272],[1168214400000, 5.795272],[1168300800000, 5.795272],[1168387200000, 5.795272],[1168473600000, 5.795272],[1168560000000, 5.795272],[1168646400000, 5.795272],[1168732800000, 5.795272],[1168819200000, 5.795272],[1168905600000, 5.795272],[1168992000000, 5.795272],[1169078400000, 5.795272],[1169164800000, 5.795937],[1169251200000, 5.796602],[1169337600000, 5.796602],[1169424000000, 5.796602],[1169510400000, 5.796602],[1169596800000, 5.796602],[1169683200000, 5.796602],[1169769600000, 5.797268],[1169856000000, 5.797268],[1169942400000, 5.797268],[1170028800000, 5.797268],[1170115200000, 5.797933],[1170201600000, 5.798599]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});