Orientation in UWP Bullet Graph (SfBulletGraph)
15 Jul 20261 minute to read
By default, the orientation of SfBulletGraph is horizontal. It can be customized by using the Orientation property respectively.
<syncfusion:SfBulletGraph Orientation="Vertical" />SfBulletGraph bullet = new SfBulletGraph();
bullet.Orientation = Orientation.Vertical;
this.Grid.Children.Add(bullet);|
|
|

