차밍이
[Python] Plotly legend(범례) 의 모든 것 - 순서, 위치, 폰트 등 본문
반응형
목차
Legend 이름 및 순서 설정
legendrank
를 통해서 순서의 우선순위를 줄 수 있다.
name
에 설정해준 값이 legend
로 표시된다.
fig = go.Figure()
fig.add_trace(go.Bar(name="fourth", x=["a", "b"], y=[2,1], legendrank=4))
fig.add_trace(go.Bar(name="second", x=["a", "b"], y=[2,1], legendrank=2))
fig.add_trace(go.Bar(name="first", x=["a", "b"], y=[1,2], legendrank=1))
fig.add_trace(go.Bar(name="third", x=["a", "b"], y=[1,2], legendrank=3))
fig.show()
Legend 위치
fig.update_layout(
legend=dict(
orientation="h", # 가로 방향으로
yanchor="top", y=0.99, # y축 방향 위치 설정
xanchor="left", x=0.01, # x축 방향 위치 설정
)
)
Legend 폰트 및 글자 크기 등 스타일링
fig.update_layout(
legend=dict(
x=0, y=1,
traceorder="reversed",
title_font_family="Times New Roman",
font=dict(
family="Courier",
size=12,
color="black"
),
bgcolor="LightSteelBlue",
bordercolor="Black",
borderwidth=2
)
)
[Python] Plotly 자주 사용하는 Layout 설정 - title, 축 label, font, subtitle, position 등
[Python] Plotly 축 반전, x축 y축 반전 뒤집기
[Python] Plotly 그래프 사용법 - Line Plot
Plotly를 사용한 파이썬 시각화 using 코로나 데이터셋
.
반응형
'파이썬 > 데이터 시각화' 카테고리의 다른 글
[Python] Plotly 누적 그룹 막대 그래프 그리기 - Stack and Group Bar Chart (0) | 2023.01.27 |
---|---|
[Python] Plotly 그래프 사용법 - Bar Plot (0) | 2023.01.21 |
[Plotly] express와 graph_objects의 차이 / px와 go 차이 (0) | 2023.01.20 |
[Python] Plotly : subplot 만들기의 모든것 - subtitle, type 설정 포함 (0) | 2022.07.24 |
[Python] Plotly 자주 사용하는 Layout 설정 - title, 축 label, font, subtitle, position 등 (4) | 2022.06.19 |
[Python] Plotly 축 반전, x축 y축 반전 뒤집기 (2) | 2022.02.14 |
[Python] Plotly 그래프 사용법 - Line Plot (0) | 2021.01.28 |
[Python] Plotly 그래프 사용법 - Scatter Plot (0) | 2021.01.27 |
관련된 글 보기
Comments