Flow Direction in UWP Bullet Graph (SfBulletGraph)

18 Nov 20181 minute to read

By default the flow direction of SfBulletGraph is forward (LTR). It can be customized by using the FlowDirection property respectively.

Note:- When the Orientation of SfBulletGraph is Horizontal, the default flow direction will be Left to Right. When the Orientation of SfBulletGraph is Vertical, the default flow direction will be Top to Bottom.

<syncfusion:SfBulletGraph FlowDirection="Forward" />
SfBulletGraph bullet = new SfBulletGraph();
bullet.FlowDirection = BulletGraphFlowDirection.Forward;
this.Grid.Children.Add(bullet);

Vertical Flow Direction Control

Horizontal Flow Direction Control