$(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: 'Курс RUB, грн'},
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: 'Курс RUB',
data: [[1264982400000,0.26286],[1265068800000,0.26314],[1265155200000,0.26506],[1265241600000,0.2678],[1265328000000,0.26666],[1265414400000,0.2626],[1265500800000,0.2626],[1265587200000,0.2626],[1265673600000,0.2624],[1265760000000,0.26369],[1265846400000,0.26483],[1265932800000,0.2659],[1266019200000,0.26534],[1266105600000,0.26534],[1266192000000,0.26534],[1266278400000,0.26479],[1266364800000,0.26571],[1266451200000,0.26696],[1266537600000,0.26565],[1266624000000,0.26526],[1266710400000,0.26526],[1266796800000,0.26526],[1266883200000,0.26501],[1266969600000,0.265],[1267056000000,0.26606],[1267142400000,0.26587],[1267228800000,0.26599],[1267315200000,0.26599]],
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: [[1264982400000, 0.262860],[1264982400000, 0.262860],[1265068800000, 0.263140],[1265155200000, 0.265060],[1265241600000, 0.267800],[1265328000000, 0.266660],[1265414400000, 0.262600],[1265500800000, 0.262600],[1265587200000, 0.262600],[1265673600000, 0.262400],[1265760000000, 0.263690],[1265846400000, 0.264830],[1265932800000, 0.265900],[1266019200000, 0.265340],[1266105600000, 0.265340],[1266192000000, 0.265340],[1266278400000, 0.264790],[1266364800000, 0.265710],[1266451200000, 0.266960],[1266537600000, 0.265650],[1266624000000, 0.265260],[1266710400000, 0.265260],[1266796800000, 0.265260],[1266883200000, 0.265010],[1266969600000, 0.265000],[1267056000000, 0.266060],[1267142400000, 0.265870],[1267228800000, 0.265990],[1267315200000, 0.265990]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});