$(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: 'Курс HUF, грн'},
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: 'Курс HUF',
data: [[1257033600000,0.0432702],[1257120000000,0.0432702],[1257206400000,0.0429133],[1257292800000,0.0422121],[1257379200000,0.0426868],[1257465600000,0.0432219],[1257552000000,0.0432254],[1257638400000,0.0432254],[1257724800000,0.0432254],[1257811200000,0.0438977],[1257897600000,0.0439319],[1257984000000,0.0446291],[1258070400000,0.0440071],[1258156800000,0.0442279],[1258243200000,0.0442279],[1258329600000,0.0442279],[1258416000000,0.0447294],[1258502400000,0.0446826],[1258588800000,0.0450084],[1258675200000,0.0444843],[1258761600000,0.0438934],[1258848000000,0.0438934],[1258934400000,0.0438934],[1259020800000,0.0446998],[1259107200000,0.0446861],[1259193600000,0.0450437],[1259280000000,0.0445867],[1259366400000,0.0437203],[1259452800000,0.0437203],[1259539200000,0.0437203]],
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: [[1257033600000, 0.043270],[1257033600000, 0.043270],[1257120000000, 0.043270],[1257206400000, 0.042913],[1257292800000, 0.042212],[1257379200000, 0.042687],[1257465600000, 0.043222],[1257552000000, 0.043225],[1257638400000, 0.043225],[1257724800000, 0.043225],[1257811200000, 0.043898],[1257897600000, 0.043932],[1257984000000, 0.044629],[1258070400000, 0.044007],[1258156800000, 0.044228],[1258243200000, 0.044228],[1258329600000, 0.044228],[1258416000000, 0.044729],[1258502400000, 0.044683],[1258588800000, 0.045008],[1258675200000, 0.044484],[1258761600000, 0.043893],[1258848000000, 0.043893],[1258934400000, 0.043893],[1259020800000, 0.044700],[1259107200000, 0.044686],[1259193600000, 0.045044],[1259280000000, 0.044587],[1259366400000, 0.043720],[1259452800000, 0.043720],[1259539200000, 0.043720]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});