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.
開始位置と終了位置、および最小値と最大値が異なる複数の LinearAxis 要素があります。タイトル (例: Day 1、Day 2 など) を保持しながら、これらの軸の数値 (例: 0、100、200 など) を非表示にするにはどうすればよいですか?
たとえば、数字の 0、100、200 を非表示にしたい
ラベル 0、100、200 が 1 つの軸に属し、「Day One」というテキストが他の軸に属している場合、次のように最初の軸のラベルの色を透明に設定できます。
axis.TextColor = OxyColors.Transparent;
お役に立てれば。