$(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: 'Курс CZK, грн'},
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: 'Курс CZK',
data: [[1294272000000,0.422763],[1294358400000,0.421656],[1294444800000,0.421656],[1294531200000,0.421656],[1294617600000,0.421656],[1294704000000,0.41661],[1294790400000,0.419675],[1294876800000,0.423295],[1294963200000,0.430758],[1295049600000,0.435238],[1295136000000,0.435238],[1295222400000,0.435238],[1295308800000,0.434556],[1295395200000,0.437414],[1295481600000,0.442322],[1295568000000,0.438226],[1295654400000,0.442209],[1295740800000,0.442209],[1295827200000,0.442209],[1295913600000,0.444942],[1296000000000,0.445611],[1296086400000,0.448317],[1296172800000,0.448712],[1296259200000,0.448934],[1296345600000,0.448934],[1296432000000,0.448934]],
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: [[1294272000000, 0.422763],[1294272000000, 0.422763],[1294358400000, 0.421656],[1294444800000, 0.421656],[1294531200000, 0.421656],[1294617600000, 0.421656],[1294704000000, 0.416610],[1294790400000, 0.419675],[1294876800000, 0.423295],[1294963200000, 0.430758],[1295049600000, 0.435238],[1295136000000, 0.435238],[1295222400000, 0.435238],[1295308800000, 0.434556],[1295395200000, 0.437414],[1295481600000, 0.442322],[1295568000000, 0.438226],[1295654400000, 0.442209],[1295740800000, 0.442209],[1295827200000, 0.442209],[1295913600000, 0.444942],[1296000000000, 0.445611],[1296086400000, 0.448317],[1296172800000, 0.448712],[1296259200000, 0.448934],[1296345600000, 0.448934],[1296432000000, 0.448934]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});