plotly / plotly/plotly.py

Update_yaxes mirror not working

オープン
#4,940 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

bug P3
主要言語
Python
スター
18.8k
フォーク
2.8k
平均マージ
16時間 26分
マージ済み PR(30日)
21

説明

When I set the mirror value to True in the update_yaxes function, I expected the right line of the graph to be drawn, but it is not drawn.

fig_combine = go.Figure()
color_index = 0
fig_combine.add_trace(go.Bar
                            (x=[1,2,3,4,5,6,7,8], y=[1,2,3,4,5,6,7,8,9], name=f"test", marker=dict(color=colors[color_index]), opacity=0.7))

fig_combine.update_layout(
                        width=650,
                        height=700,
                        title=dict(text=f"{fraction} Fraction", font=dict(size=20, color="black"), x=0.5, y=0.9, xanchor="center", yanchor="top"),
                        barmode="overlay"
                        )
fig_combine.update_layout(legend=dict(orientation="v", xanchor="center", yanchor="top", x=0.13, y=0.99, bgcolor='rgba(255, 255, 255, 0.5)'))
fig_combine.update_xaxes(
                        title="Equivalent Circle Diameter(ECD, µm)",
                        showgrid=True,
                        range=[0, 9],
                        dtick=0.5,
                        showline = True,
                        mirror = True
                        )
fig_combine.update_yaxes(
                        title=f"{fraction} Fraction(%)",
                        showgrid=True,
                        range=[0, 9],
                        dtick=2,
                        showline = True,
                        **mirror = True**
                        )

Image

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

調査の方向性

まず再現用の図のコードを実行し、update_xaxes と update_yaxes を通じて showline と mirror を有効にしたときの x 軸と y 軸の挙動を比較します。既存の軸設定とグラフの外観が正しいままで、y 軸の右側の線がレンダリングされることを確認して、修正を検証します。

索引モデルが issue の本文から書いたものです。

評価

技術スタック
python
領域
data-visualization
issue の種類
バグ
難易度
3/5
見積もり時間
1〜2日
活発さ
停滞
明瞭さ
おおむね明確
初心者へのやさしさ
35/100

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。