Dash (plotly) で棒グラフを作成し、すべての棒に複数の色を使用する方法を探しています。現時点ではすべて青色です。
例えば
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'
}
})))