ComponentOne BulletGraph for WinForms
Work with BulletGraph / Configuring Orientation
In This Topic
    Configuring Orientation
    In This Topic

    A bullet graph can have either horizontal or vertical orientation. Though the default orientation of the control is horizontal, the Orientation property of the C1BulletGraph class can be used to assign an orientation to the bullet graph. This property accepts values (Horizontal/Vertical) from the C1GaugeOrientation enum.

    The image below shows the horizontal and vertical orientation in BulletGraph control.

    orientation

    For example, to orient the bullet graph vertically, the Orientation property of C1BulletGraph class can be set to C1GaugeOrientation.Vertical as depicted in the code below:

    'Orients the BulletGraph vertically
    C1BulletGraph1.Orientation = C1GaugeOrientation.Vertical
    
    //Orients the BulletGraph vertically
    c1BulletGraph1.Orientation = C1GaugeOrientation.Vertical;