$(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: [[1109635200000,0.236186],[1109721600000,0.236345],[1109808000000,0.234145],[1109894400000,0.235406],[1109980800000,0.234226],[1110067200000,0.234226],[1110153600000,0.234226],[1110240000000,0.234226],[1110326400000,0.234226],[1110412800000,0.241043],[1110499200000,0.240751],[1110585600000,0.241056],[1110672000000,0.241056],[1110758400000,0.241056],[1110844800000,0.23908],[1110931200000,0.239155],[1111017600000,0.237161],[1111104000000,0.236206],[1111190400000,0.236196],[1111276800000,0.236196],[1111363200000,0.236196],[1111449600000,null],[1111536000000,0.233092],[1111622400000,0.229119],[1111708800000,0.227794],[1111795200000,0.227794],[1111881600000,0.227794],[1111968000000,0.227794],[1112054400000,0.227794],[1112140800000,0.225992],[1112227200000,0.227188]],
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: [[1109635200000, 0.236186],[1109635200000, 0.236186],[1109721600000, 0.236345],[1109808000000, 0.234145],[1109894400000, 0.235406],[1109980800000, 0.234226],[1110067200000, 0.234226],[1110153600000, 0.234226],[1110240000000, 0.234226],[1110326400000, 0.234226],[1110412800000, 0.241043],[1110499200000, 0.240751],[1110585600000, 0.241056],[1110672000000, 0.241056],[1110758400000, 0.241056],[1110844800000, 0.239080],[1110931200000, 0.239155],[1111017600000, 0.237161],[1111104000000, 0.236206],[1111190400000, 0.236196],[1111276800000, 0.236196],[1111363200000, 0.236196],[1111536000000, 0.233092],[1111622400000, 0.229119],[1111708800000, 0.227794],[1111795200000, 0.227794],[1111881600000, 0.227794],[1111968000000, 0.227794],[1112054400000, 0.227794],[1112140800000, 0.225992],[1112227200000, 0.227188]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});