admin管理员组文章数量:1344303
How do I dynamically change the max value of the x-axis to today's date? and the min value up to 15 weeks ago? How can change the x-axis to dynamically do this?
chart:{
animations:{
enabled: false,
},
toolbar: {
show: false,
},
height:450,
width: '100%',
type: 'bar',
background:'#ffffff',
forColor: '#333'
},
series:[{
name:'Calories',
data:[80,81,83,85,82,89,90]
}],
dataLabels:{
enabled:false
},
markers: {
size:0,
},
xaxis:{
type: 'datetime',
categories: [
sevenWeeksBack,date
],
// datetimeUTC:true,
// datetimeFormatter:{
// year: 'yyyy',
// month:"Mmm",
// day: "dd"
// },
// labels:{
// show:true,
// },
//min: new Date(sevenWeeksBack).getTime(),
//max: new Date().getTime(),
//range: new Date(sevenWeeksBack).getTime(),
// min:new Date(Date.now()-604800000),
// tickAmount: 'dataPoints'
},
yaxis:[{
title:{
text: ''
}
}],
plotOptions:{
bar:{
horizontal: false
}
},
fill:{
colors: ['#33e400']
},
title:{
text: 'Food Calories',
align: 'left',
margin: 20,
offsetY: 20,
style:{
fontSize: '25px'
}
},
tooltip: {
enabled:false,
x: {
format: 'dd MMM yyyy'
}
},
states: {
hover: {
filter: {
type: 'none',
}
}
}
};
The ining data will contain up to 90 days of worth of data (90 values). How can I display the x-axis to do dates?
This chart is intended to display up to 90 days. I have tried using momentjs to dynamically change the max and min value but with no success
How do I dynamically change the max value of the x-axis to today's date? and the min value up to 15 weeks ago? How can change the x-axis to dynamically do this?
chart:{
animations:{
enabled: false,
},
toolbar: {
show: false,
},
height:450,
width: '100%',
type: 'bar',
background:'#ffffff',
forColor: '#333'
},
series:[{
name:'Calories',
data:[80,81,83,85,82,89,90]
}],
dataLabels:{
enabled:false
},
markers: {
size:0,
},
xaxis:{
type: 'datetime',
categories: [
sevenWeeksBack,date
],
// datetimeUTC:true,
// datetimeFormatter:{
// year: 'yyyy',
// month:"Mmm",
// day: "dd"
// },
// labels:{
// show:true,
// },
//min: new Date(sevenWeeksBack).getTime(),
//max: new Date().getTime(),
//range: new Date(sevenWeeksBack).getTime(),
// min:new Date(Date.now()-604800000),
// tickAmount: 'dataPoints'
},
yaxis:[{
title:{
text: ''
}
}],
plotOptions:{
bar:{
horizontal: false
}
},
fill:{
colors: ['#33e400']
},
title:{
text: 'Food Calories',
align: 'left',
margin: 20,
offsetY: 20,
style:{
fontSize: '25px'
}
},
tooltip: {
enabled:false,
x: {
format: 'dd MMM yyyy'
}
},
states: {
hover: {
filter: {
type: 'none',
}
}
}
};
The ining data will contain up to 90 days of worth of data (90 values). How can I display the x-axis to do dates?
This chart is intended to display up to 90 days. I have tried using momentjs to dynamically change the max and min value but with no success
Share Improve this question asked Jul 25, 2020 at 0:11 AidanAidan 471 gold badge1 silver badge4 bronze badges1 Answer
Reset to default 7I wouldn't mix type: 'datetime'
with categories
, if you're using categories
you're probably better off using type: 'category'
. That said, I believe there are two approaches you can take:
If you've already formatted your dates and put them into the categories array and you know you'll always be receiving 90 days worth of values - then it'll format as you expect. There's a nice example of that approach here, referred to in the docs under "1). Single values". (This approach isn't working for you currently because from what I can see you only have 7 values in your
series.data
.)Use
type: 'datetime'
and drop the categories. This will allow you to format usingx.min
andx.max
as you've tried. Caveat here is that you'll need to include the timestamp with each data point when passing to ApexCharts, so you might have to do some pre-processing. This is referred to as "3). Timeline Series" in the docs. I put together a codepen showing this approach, using both of the two timeline series formats.
本文标签: javascriptHow to dynamically change the xaxis in ApexCharts to datesStack Overflow
版权声明:本文标题:javascript - How to dynamically change the x-axis in ApexCharts to dates? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743786605a2538798.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论