title | page_title | description | slug | tags | published | position |
---|---|---|---|---|---|---|
Getting Started |
Getting Started |
This tutorial will walk you through the creation of a RadBulletGraph. |
radbulletgraph-getting-started |
getting,started |
true |
1 |
This tutorial will walk you through the creation of a RadBulletGraph.
In order to use RadBulletGraph in your project you have to add a reference to the following assemblies:
- Telerik.Licensing.Runtime
- Telerik.Windows.Controls
- Telerik.Windows.Controls.DataVisualization
- Telerik.Windows.Data
You can find the required assemblies for each control from the suite in the {% if site.site_name == 'Silverlight' %}[Controls Dependencies]({%slug installation-installing-controls-dependencies%}){% else %}[Controls Dependencies]({%slug installation-installing-controls-dependencies-wpf%}){% endif %} help article.
tip With the 2025 Q1 release, the Telerik UI for WPF has a new licensing mechanism. You can learn more about it [here]({%slug installing-license-key%}).
To use RadBulletGraph when working with NuGet packages, install the Telerik.Windows.Controls.DataVisulization.for.Wpf.Xaml
package. The [package name may vary]({%slug nuget-available-packages%}) slightly based on the Telerik dlls set - [Xaml or NoXaml]({%slug xaml-vs-noxaml%})
Read more about NuGet installation in the [Installing UI for WPF from NuGet Package]({%slug nuget-installation%}) article.
The RadBulletGraph suite provides two controls - one horizontally arranged and one vertically.
-
RadHorizontalBulletGraph
-
RadVerticalBulletGraph
The following image describes the main elements of the RadBulletGraph control.
The following examples show how to define a simple horizontal and vertical bullet graphs.
{{region radbulletgraph-getting-started-0}} <telerik:RadHorizontalBulletGraph FeaturedMeasure="60" ComparativeMeasure="65" ProjectedValue="75" Maximum="100"> telerik:RadHorizontalBulletGraph.QualitativeRanges <telerik:QualitativeRange Brush="#A8A8A8" Value="150" /> <telerik:QualitativeRange Brush="#C6C8C8" Value="225" /> <telerik:QualitativeRange Brush="#E8E8E8" /> </telerik:RadHorizontalBulletGraph.QualitativeRanges> </telerik:RadHorizontalBulletGraph> {{endregion}}
{{region radbulletgraph-getting-started-1}} <telerik:RadVerticalBulletGraph FeaturedMeasure="60" ComparativeMeasure="65" ProjectedValue="75" Maximum="100"> telerik:RadVerticalBulletGraph.QualitativeRanges <telerik:QualitativeRange Brush="#A8A8A8" Value="150" /> <telerik:QualitativeRange Brush="#C6C8C8" Value="225" /> <telerik:QualitativeRange Brush="#E8E8E8" /> </telerik:RadVerticalBulletGraph.QualitativeRanges> </telerik:RadVerticalBulletGraph> {{endregion}}
{% if site.site_name == 'WPF' %}
- Telerik UI for WPF BulletGraph Component
- [Getting Started with Telerik UI for WPF Components]({%slug getting-started-first-steps%})
- [Telerik UI for WPF Installation]({%slug installation-installing-which-file-do-i-need%})
- [Telerik UI for WPF and WinForms Integration]({%slug winforms-integration%})
- [Telerik UI for WPF Visual Studio Templates]({%slug visual-studio-templates%})
- [Setting a Theme with Telerik UI for WPF]({%slug styling-apperance-implicit-styles-overview%})
- Telerik UI for WPF Virtual Classroom (Training Courses for Registered Users)
- Telerik UI for WPF License Agreement {% endif %}
- [Overview]({%slug radbulletgraph_overview%})
- [Qualitative Ranges]({%slug radbulletgraph-features-qualitative-ranges%})
- [Measures]({%slug radbulletgraph-features-measures%})
- [Creating a BulletGraph Programmatically]({%slug radbulletgraph_creating_a_bulletgraph_programmatically%})