$(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: 'Курс BYN, грн'},
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: 'Курс BYN',
data: [[1283299200000,0.00262],[1283385600000,0.00262],[1283472000000,0.00262],[1283558400000,0.00262],[1283644800000,0.00262],[1283731200000,0.00262],[1283817600000,0.00263],[1283904000000,0.00261],[1283990400000,0.00261],[1284076800000,0.00261],[1284163200000,0.00261],[1284249600000,0.00261],[1284336000000,0.00261],[1284422400000,0.00261],[1284508800000,0.00262],[1284595200000,0.00262],[1284681600000,0.00261],[1284768000000,0.00262],[1284854400000,0.00262],[1284940800000,0.00262],[1285027200000,0.00261],[1285113600000,0.00261],[1285200000000,0.00262],[1285286400000,0.00262],[1285372800000,0.00262],[1285459200000,0.00262],[1285545600000,0.00262],[1285632000000,0.00262],[1285718400000,0.00262],[1285804800000,0.00263]],
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: [[1283299200000, 0.002620],[1283299200000, 0.002620],[1283385600000, 0.002620],[1283472000000, 0.002620],[1283558400000, 0.002620],[1283644800000, 0.002620],[1283731200000, 0.002620],[1283817600000, 0.002630],[1283904000000, 0.002610],[1283990400000, 0.002610],[1284076800000, 0.002610],[1284163200000, 0.002610],[1284249600000, 0.002610],[1284336000000, 0.002610],[1284422400000, 0.002610],[1284508800000, 0.002620],[1284595200000, 0.002620],[1284681600000, 0.002610],[1284768000000, 0.002620],[1284854400000, 0.002620],[1284940800000, 0.002620],[1285027200000, 0.002610],[1285113600000, 0.002610],[1285200000000, 0.002620],[1285286400000, 0.002620],[1285372800000, 0.002620],[1285459200000, 0.002620],[1285545600000, 0.002620],[1285632000000, 0.002620],[1285718400000, 0.002620],[1285804800000, 0.002630]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});