$(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: 'Курс KZT, грн'},
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: 'Курс KZT',
data: [[1525132800000,0.079933],[1525219200000,0.079933],[1525305600000,0.07926],[1525392000000,0.079195],[1525478400000,0.079958],[1525564800000,0.079958],[1525651200000,0.079958],[1525737600000,0.079946],[1525824000000,0.079729],[1525910400000,0.079729],[1525996800000,0.079944],[1526083200000,0.080264],[1526169600000,0.080264],[1526256000000,0.080264],[1526342400000,0.079827],[1526428800000,0.079967],[1526515200000,0.079621],[1526601600000,0.080061],[1526688000000,0.079644],[1526774400000,0.079644],[1526860800000,0.079644],[1526947200000,0.079294],[1527033600000,0.079702],[1527120000000,0.080005],[1527206400000,0.080146],[1527292800000,0.079865],[1527379200000,0.079865],[1527465600000,0.079865],[1527552000000,0.079865],[1527638400000,0.079237],[1527724800000,0.079039]],
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: [[1525132800000, 0.079933],[1525132800000, 0.079933],[1525219200000, 0.079933],[1525305600000, 0.079260],[1525392000000, 0.079195],[1525478400000, 0.079958],[1525564800000, 0.079958],[1525651200000, 0.079958],[1525737600000, 0.079946],[1525824000000, 0.079729],[1525910400000, 0.079729],[1525996800000, 0.079944],[1526083200000, 0.080264],[1526169600000, 0.080264],[1526256000000, 0.080264],[1526342400000, 0.079827],[1526428800000, 0.079967],[1526515200000, 0.079621],[1526601600000, 0.080061],[1526688000000, 0.079644],[1526774400000, 0.079644],[1526860800000, 0.079644],[1526947200000, 0.079294],[1527033600000, 0.079702],[1527120000000, 0.080005],[1527206400000, 0.080146],[1527292800000, 0.079865],[1527379200000, 0.079865],[1527465600000, 0.079865],[1527552000000, 0.079865],[1527638400000, 0.079237],[1527724800000, 0.079039]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});