$(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: [[1095120000000,0.205293],[1095206400000,0.206959],[1095292800000,0.206959],[1095379200000,0.205428],[1095465600000,0.206118],[1095552000000,0.206118],[1095638400000,0.206118],[1095724800000,0.205358],[1095811200000,0.207028],[1095897600000,0.206436],[1095984000000,0.207242],[1096070400000,0.20696],[1096156800000,0.20696],[1096243200000,0.20696],[1096329600000,0.205914],[1096416000000,0.20713],[1096502400000,0.2068]],
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: [[1095120000000, 0.205293],[1095120000000, 0.205293],[1095206400000, 0.206959],[1095292800000, 0.206959],[1095379200000, 0.205428],[1095465600000, 0.206118],[1095552000000, 0.206118],[1095638400000, 0.206118],[1095724800000, 0.205358],[1095811200000, 0.207028],[1095897600000, 0.206436],[1095984000000, 0.207242],[1096070400000, 0.206960],[1096156800000, 0.206960],[1096243200000, 0.206960],[1096329600000, 0.205914],[1096416000000, 0.207130],[1096502400000, 0.206800]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});