This question is locked. New answers and comments are not allowed.
I'm trying to add a label into the center of the gauge but with no luck. I took a quick look at your samples and have the following;
The gauge is being created from the code-behind;
It appears as if the gauge is going over the text and therefore not showing, please can you advise.
Thanks
P
| <Grid x:Name="LayoutRoot" Margin="5" HorizontalAlignment="Left" VerticalAlignment="Top"> |
| <Grid.RowDefinitions> |
| <RowDefinition /> |
| </Grid.RowDefinitions> |
| <TextBlock Grid.Row="0" VerticalAlignment="Top" HorizontalAlignment="Center" |
| Foreground="Black" FontFamily="CourierNew"> |
| x $10,000 |
| </TextBlock> |
| </Grid> |
The gauge is being created from the code-behind;
| Grid.SetRow(radGauge, 0); |
| LayoutRoot.Children.Add(radGauge); |
It appears as if the gauge is going over the text and therefore not showing, please can you advise.
Thanks
P