bar chart 색깔 (1) 썸네일형 리스트형 [plotly] bar chart 색깔 바꾸기 # 색상 설정 colors = ['#03588C',] * len(merged_order_month_sum_from2017.index) colors[10] = '#F24472' import plotly.graph_objects as go fig = go.Figure() fig.add_trace( go.Bar( x=merged_order_month_sum_from2017.index, y=merged_order_month_sum_from2017['payment_value'], text=merged_order_month_sum_from2017['payment_value'], textposition='auto', texttemplate='R$ %{text:,.0f}', marker_color=colors # 색상.. 이전 1 다음