admin管理员组文章数量:1343338
var chart = new Highcharts.Chart({
chart: {
renderTo: container
},
plotOptions: {
series: {
pointStart: Date.UTC(2010, 0, 1),
pointInterval: 24 * 3600 * 1000 * 1 // one day
}
},
xAxis: {
type: 'datetime',
dateTimeLabelFormats: { // don't display the dummy year
day: '%b %e',
},
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}, {
data: [144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4, 29.9, 71.5, 106.4, 129.2]
}]
the code upper work good, However when i change pointInterval to 24 * 3600 * 1000 * 7 (1 week), the highchart dateTimeLabelFormat don't work, any help
var chart = new Highcharts.Chart({
chart: {
renderTo: container
},
plotOptions: {
series: {
pointStart: Date.UTC(2010, 0, 1),
pointInterval: 24 * 3600 * 1000 * 1 // one day
}
},
xAxis: {
type: 'datetime',
dateTimeLabelFormats: { // don't display the dummy year
day: '%b %e',
},
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}, {
data: [144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4, 29.9, 71.5, 106.4, 129.2]
}]
the code upper work good, However when i change pointInterval to 24 * 3600 * 1000 * 7 (1 week), the highchart dateTimeLabelFormat don't work, any help
Share Improve this question asked Sep 12, 2013 at 14:57 Michael ScofieldMichael Scofield 611 gold badge1 silver badge7 bronze badges 5- What do you mean by "don't work"? Exactly what is the problem? – Pointy Commented Sep 12, 2013 at 15:03
- jsfiddle/F2uMR the only different is the pointInterview you can find what i say – Michael Scofield Commented Sep 12, 2013 at 15:10
- It looks fine to me. I don't know what "pointInterview" means. edit oh, "pointInterval". Well it works fine with the 7 day interval. What do you expect it to look like if not what's showing up now? – Pointy Commented Sep 12, 2013 at 15:14
- wait a minutes.i will show you the bug – Michael Scofield Commented Sep 12, 2013 at 15:16
- LOL. I did the exact same thing until I saw Pawel Fus's answer. Also, you should really mark it as the correct answer. – Jester Commented May 16, 2018 at 0:18
1 Answer
Reset to default 9It doesn't work because you are setting label format for one day interval, while used is week format, see fixed example: http://jsfiddle/F2uMR/1/
$('#container').highcharts({
xAxis: {
type: 'datetime',
dateTimeLabelFormats: {
day: '%b %e',
week: '%b %e'
}
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4],
pointStart: Date.UTC(2010, 0, 1),
pointInterval: 24 * 3600 * 1000 * 7// one week
}]
});
本文标签: javascripthighchart dateTimeLabelFormats don39t workStack Overflow
版权声明:本文标题:javascript - highchart dateTimeLabelFormats don't work - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743726115a2528393.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论