admin管理员组文章数量:1344201
How can I show the week number for the date in Highstock (not Highcharts!)?
My SQL looks like this
select unix_timestamp(date)*1000 week
(....)
group by yearweek(date,3)
My JS
$(function() {
$.getJSON('json_chart.php', function(data) {
// Create the chart
$('#container').highcharts('StockChart', {
rangeSelector : {
selected : 2
},
title : {
text : 'Wyniki'
},
xAxis: {
type: 'datetime',
dateTimeLabelFormats: {
day: '%e'
}
},
yAxis: [{
offset: 40,
title: {
text: 'Ilośc'
},
lineWidth: 2
}, {
title: {
text: 'Efek'
},
opposite: true,
}],
series : [{
name : 'Ode',
data : data.ode,
type : 'column',
yAxis: 0
},{
name : 'Sku',
data : data.sku,
marker : {
enabled : true,
radius : 3
},
yAxis: 1,
shadow : true
},{
name : 'TK',
data : data.tpk,
marker : {
enabled : true,
radius : 3
},
yAxis: 0,
shadow : true
}]
});
});
});
Currently it looks like this:
But I want to look like this:
How can I show the week number for the date in Highstock (not Highcharts!)?
My SQL looks like this
select unix_timestamp(date)*1000 week
(....)
group by yearweek(date,3)
My JS
$(function() {
$.getJSON('json_chart.php', function(data) {
// Create the chart
$('#container').highcharts('StockChart', {
rangeSelector : {
selected : 2
},
title : {
text : 'Wyniki'
},
xAxis: {
type: 'datetime',
dateTimeLabelFormats: {
day: '%e'
}
},
yAxis: [{
offset: 40,
title: {
text: 'Ilośc'
},
lineWidth: 2
}, {
title: {
text: 'Efek'
},
opposite: true,
}],
series : [{
name : 'Ode',
data : data.ode,
type : 'column',
yAxis: 0
},{
name : 'Sku',
data : data.sku,
marker : {
enabled : true,
radius : 3
},
yAxis: 1,
shadow : true
},{
name : 'TK',
data : data.tpk,
marker : {
enabled : true,
radius : 3
},
yAxis: 0,
shadow : true
}]
});
});
});
Currently it looks like this:
But I want to look like this:
Share Improve this question asked Jul 25, 2013 at 6:41 breqbreq 25.6k26 gold badges67 silver badges109 bronze badges3 Answers
Reset to default 10You can add it using dateFormats
, for example: http://jsfiddle/EkAnm/
Highcharts.dateFormats = {
W: function (timestamp) {
var date = new Date(timestamp),
day = date.getUTCDay() == 0 ? 7 : date.getUTCDay(),
dayNumber;
date.setDate(date.getUTCDate() + 4 - day);
dayNumber = Math.floor((date.getTime() - new Date(date.getUTCFullYear(), 0, 1, -6)) / 86400000);
return 1 + Math.floor(dayNumber / 7);
}
}
Then use it in or format
or dateFormat()
:
xAxis: {
tickInterval: 7 * 24 * 36e5, // one week
labels: {
format: '{value:Week %W/%Y}'
}
},
To keep weeks and years consistent, I tend to use ISO-8601 standard when dealing with week numbering.
With Pawel answer and the js code from this blog, I set up the following solution.
Highcharts.dateFormats = {
V: function (timestamp) {
var target = new Date(timestamp);
var dayNr = (target.getDay() + 6) % 7;
target.setDate(target.getDate() - dayNr + 3);
var firstThursday = target.valueOf();
target.setMonth(0, 1);
if (target.getDay() != 4) {
target.setMonth(0, 1 + ((4 - target.getDay()) + 7) % 7);
}
return 1 + Math.ceil((firstThursday - target) / 604800000); // 604800000 = 7 * 24 * 3600 * 1000
} ,
G: function(timestamp) {
var target = new Date(timestamp);
target.setDate(target.getDate() - ((target.getDay() + 6) % 7) + 3);
return target.getFullYear();
}
};
%V and %G respects the strftime format used in highstock.
For @Paweł Fus 's answer, I find out that when the date is 2012/1/1 witch was Sunday,the result is wrong, so I have changed the answer to :
W: function (timestamp) {
var date = new Date(timestamp);
var firstDay = new Date(date.getFullYear(), 0, 1);
var day = firstDay.getDay() == 0 ? 7 : firstDay.getDay();
var days = Math.floor((date.getTime() - firstDay)/86400000) + day; // day numbers from the first Monday of the year to current date
return Math.ceil(days/7);
},
本文标签: javascriptHighstockdisplay number of weekStack Overflow
版权声明:本文标题:javascript - Highstock - display number of week - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743723905a2528037.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论