4
我不能讓下面的繪製ticklabelsPlotly(DASH)刻度標籤覆蓋
self.months = [2017-01-01', 2017-02-01', ...]
def plot_bar(self):
print self.data
app.layout = html.Div(children=[html.H1(children=''), html.Div(children='Discovered monthly'),
dcc.Graph(
figure=go.Figure(
data = self.data,
layout=go.Layout(
title='Streams', showlegend=True, barmode='stack', margin=go.Margin(l=200, r=0, t=40, b=20),
xaxis=dict(tickvals = self.months, ticktext = self.months, title='months')
)
),
style={'height': 300},
id='my-graph')
])
所以基本上我有一個條形圖的數字表示,但是當我改變刻度值和ticklabels,那些數字標籤消失,但我沒有看到我預計會在那裏的日期。我是否缺少一個開關來顯示這些標籤?
你有一些樣本數據嗎? – DJK