我正在寻求帮助在 Dash 中创建条形图(情节)并为所有条形图提供一种以上的颜色,目前它们都是蓝色的。
例如
pv = pd.pivot_table(df, index=['customer_name2'], columns=['FY'], values=['amount'], aggfunc=sum, fill_value=0)
pv2 = pv.reindex(pv['amount'].sort_values(by='FY17', ascending=True).index).head(x_bottom)
trace1 = go.Bar(x=pv2.index, y=pv2[('amount','FY17')], name='Revenue')
graphs.append(html.Div(dcc.Graph(
id='chart_id_6',
figure={
'data': [trace1],
'layout': {
'title': 'Bottom ' + str(x_bottom) + ' Customers'
}
})))