$(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: 'Курс CNY, грн'}, 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: 'Курс CNY', data: [[1225497600000,0.846373],[1225584000000,0.846373],[1225670400000,0.846373],[1225756800000,0.846991],[1225843200000,0.852263],[1225929600000,0.852698],[1226016000000,0.849658],[1226102400000,0.849521],[1226188800000,0.849521],[1226275200000,0.849521],[1226361600000,0.846744],[1226448000000,0.846254],[1226534400000,0.846325],[1226620800000,0.846542],[1226707200000,0.847613],[1226793600000,0.847613],[1226880000000,0.847613],[1226966400000,0.848682],[1227052800000,0.861898],[1227139200000,0.877736],[1227225600000,0.877726],[1227312000000,0.903466],[1227398400000,0.903466],[1227484800000,0.903466],[1227571200000,0.921901],[1227657600000,0.968296],[1227744000000,0.987277],[1227830400000,0.987378],[1227916800000,1.00626],[1228003200000,1.00626]], 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: [[1225497600000, 0.846373],[1225497600000, 0.846373],[1225584000000, 0.846373],[1225670400000, 0.846373],[1225756800000, 0.846991],[1225843200000, 0.852263],[1225929600000, 0.852698],[1226016000000, 0.849658],[1226102400000, 0.849521],[1226188800000, 0.849521],[1226275200000, 0.849521],[1226361600000, 0.846744],[1226448000000, 0.846254],[1226534400000, 0.846325],[1226620800000, 0.846542],[1226707200000, 0.847613],[1226793600000, 0.847613],[1226880000000, 0.847613],[1226966400000, 0.848682],[1227052800000, 0.861898],[1227139200000, 0.877736],[1227225600000, 0.877726],[1227312000000, 0.903466],[1227398400000, 0.903466],[1227484800000, 0.903466],[1227571200000, 0.921901],[1227657600000, 0.968296],[1227744000000, 0.987277],[1227830400000, 0.987378],[1227916800000, 1.006259],[1228003200000, 1.006259]], tooltip: {valueSuffix: ' грн'}, type: 'spline', step: false, color: '#0000CC', threshold: null }] }); });