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.
.NETチャート(クラスSystem.Web.UI.DataVisualization.Charting.Chart)のX軸とY軸上のポイントをハイフンスタイルのマーカーとして示す必要があります。現在、X軸とY軸は完全に単純です。
以下は、チャート軸のスタイルを設定する方法の写真です(別のチャートツールから取得したスクリーンショット)。
これどうやってするの?
私は自分で解決策を見つけました。ここでの主要なプロパティは、MajorTickMarkとMinorTickMarkです。例えば。
chartAreaObject.AxisX.MajorTickMark.Enabled = true; chartAreaObject.AxisX.MajorTickMark.LineColor = Color.White;