Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
暗い背景にグラフをプロットしましたが、軸の色と目盛りの色が原因で非常に読みにくくなっています。軸、目盛り、および軸の目盛り値の色を白に変更するにはどうすればよいですか?
CSSたとえば、グラフのスタイルを設定するために使用できます
CSS
path.domain { stroke: white; } .tick text { stroke: yellow; } .c3-legend-item text { stroke: grey; }
軸を白、目盛りラベルを黄色、凡例テキストを灰色にするには。
.c3 path, .c3 line, .tick text { stroke: white; }