GanttView for WinForms
タイムスケールの最上位区分の削除
GanttView の使用 > タイムスケール > タイムスケールの最上位区分の削除

You can remove the Top Tier from Timescale by setting the Visible property of the ScaleTier class. This section discusses how you can remove the Top Tier from Timescale programmatically.

Below code snippet shows how you can remove the Top Tier from timescale programmatically.

C#
コードのコピー
//タイムスケールからTopTierを削除します。
c1GanttView1.Timescale.TopTier.Visible = False;