[]
The following quick start guide is intended to get you up and running with BulletGraph for WPF. You will begin in Visual Studio, create a new project, add a BulletGraph to your application, and add the gauge value.
The following image depicts a BulletGraph that displays the value property set at 50.
To set up your project and add the BulletGraph control to your application, complete the following steps:
Set the Value property of BulletGraph to 50. Also, set the Bad, Good, Target and TextVisbility properties to customize the gauge control.
xml
<c1:C1BulletGraph Name="bulletGraph" Bad="60" Good="80" TextVisibility="All" Value="50" Target="75" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="224,162,0,0" Width="393"/>
csharp
bulletGraph.Value = 50;
bulletGraph.Bad = 60;
bulletGraph.Good = 80;
bulletGraph.Target = 75;
bulletGraph.TextVisibility = C1.WPF.Gauge.GaugeTextVisibility.All;
For more information about Value, see Values and BulletGraph features.
Build and run to view the final BulletGraph application.