英文:
Plotly/Python: How to fill/expand monthly time-series to fill the x-axis?
问题
在不扩展数据集的情况下,是否有方法来填补柱状图之间的空白?
我的图表代码:
xaxis={
'title':'',
'tick0':chartdata[chartdata.Date > date].index[0],
'dtick':'M1',
'tickformat':'%b\n%Y',
'tickangle':-45,
},
yaxis={
'title':'<b>Gross</b> Balances',
'tickprefix':'$',
'nticks':20,
'showgrid':True,
},
barmode='stack',
当前视图:
堆叠条形图
目前它只显示数据集中月底的柱形图,并且柱形图之间有很多空白。
英文:
Is there a way without expanding the dataset to fill the gaps between bars?
My code for the chart:
xaxis={
'title':"",
'tick0':chartdata[chartdata.Date > date].index[0],
'dtick':'M1',
'tickformat':'%b\n%Y',
'tickangle':-45,
},
yaxis={
'title':"<b>Gross</b> Balances",
'tickprefix':'$',
'nticks':20,
'showgrid':True,
},
barmode='stack',
Current view:
stacked bar chart
Currently it is only displaying the bar @ month-end (according to the dataset) and there is a lot of white space between bars.
答案1
得分: 1
我相信我正在寻找的解决方案是:
fig.update_traces(
xperiod="M1"
)
英文:
I believe the solution I was looking for was:
fig.update_traces(
xperiod="M1"
)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论