BulletGraph for WinForms
定性的範囲
BulletGraphの操作 > 定性的範囲

The qualitative range is an element of the bullet graph that helps to divide the quantitative scale into different zones to signal whether the featured measure is in good, bad, or some other state.

The image above depicts the three different qualitative ranges of BulletGraph control, indicated with varying intensities of black color.

The code below shows how you can assign different qualitative ranges or properties such as Good and Bad to the bullet graph, both starting and ending values.

'メジャーのBadに対して範囲の開始値を設定します
C1BulletGraph1.Bad.From = 0
'メジャーのBadに対して範囲の終了値を設定します
C1BulletGraph1.Bad.To = 30
'メジャーのGoodに対して範囲の開始値を設定します
C1BulletGraph1.Good.From = 30
'メジャーのGoodに対して範囲の終了値を設定します
C1BulletGraph1.Good.To = 70
c1BulletGraph1.Bad.From =0; //メジャーのBadに対して範囲の開始値を設定します
c1BulletGraph1.Bad.To =30; //メジャーのBadに対して範囲の終了値を設定します
c1BulletGraph1.Good.From = 30; //メジャーのGoodに対して範囲の開始値を設定します
c1BulletGraph1.Good.To = 70; //メジャーのGoodに対して範囲の終了値を設定します