$(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: 'Курс PLN, грн'},
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: 'Курс PLN',
data: [[1546300800000,7.37058],[1546387200000,7.37058],[1546473600000,7.37058],[1546560000000,7.26475],[1546646400000,7.3555],[1546732800000,7.3555],[1546819200000,7.3555],[1546905600000,7.3555],[1546992000000,7.44609],[1547078400000,7.49718],[1547164800000,7.59087],[1547251200000,7.55587],[1547337600000,7.55587],[1547424000000,7.55587],[1547510400000,7.48625],[1547596800000,7.4954],[1547683200000,7.43963],[1547769600000,7.45818],[1547856000000,7.4314],[1547942400000,7.4314],[1548028800000,7.4314],[1548115200000,7.40025],[1548201600000,7.39555],[1548288000000,7.34274],[1548374400000,7.34887],[1548460800000,7.35528],[1548547200000,7.35528],[1548633600000,7.35528],[1548720000000,7.40317],[1548806400000,7.38115],[1548892800000,7.39349]],
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: [[1546300800000, 7.370581],[1546300800000, 7.370581],[1546387200000, 7.370581],[1546473600000, 7.370581],[1546560000000, 7.264749],[1546646400000, 7.355502],[1546732800000, 7.355502],[1546819200000, 7.355502],[1546905600000, 7.355502],[1546992000000, 7.446094],[1547078400000, 7.497185],[1547164800000, 7.590869],[1547251200000, 7.555867],[1547337600000, 7.555867],[1547424000000, 7.555867],[1547510400000, 7.486254],[1547596800000, 7.495402],[1547683200000, 7.439626],[1547769600000, 7.458177],[1547856000000, 7.431400],[1547942400000, 7.431400],[1548028800000, 7.431400],[1548115200000, 7.400246],[1548201600000, 7.395553],[1548288000000, 7.342740],[1548374400000, 7.348873],[1548460800000, 7.355277],[1548547200000, 7.355277],[1548633600000, 7.355277],[1548720000000, 7.403171],[1548806400000, 7.381155],[1548892800000, 7.393495]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});