ComponentOne BulletGraph for WinForms
Work with BulletGraph / Qualitative Range
In This Topic
    Qualitative Range
    In This Topic

    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.

    qualitative-bulletgraph

    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.

    'Sets the starting value of the range considered bad for the measure
    C1BulletGraph1.Bad.From = 0
    'Sets the ending value of the range considered bad for the measure
    C1BulletGraph1.Bad.To = 30
    'Sets the starting value of the range considered good for the measure
    C1BulletGraph1.Good.From = 30
    'Sets the ending value of the range considered good for the measure
    C1BulletGraph1.Good.To = 70
    
    //Sets the starting value of the range considered bad for the measure
    c1BulletGraph1.Bad.From =0;
    //Sets the ending value of the range considered bad for the measure
    c1BulletGraph1.Bad.To =30;
    //Sets the starting value of the range considered good for the measure
    c1BulletGraph1.Good.From = 30;
    //Sets the ending value of the range considered good for the measure
    c1BulletGraph1.Good.To = 70;