I'm working with the RadHorizontalLinearGuage and there is some extra space at the bottom I cant seem to get rid of.
Here is my xaml. I put the border around it so I could show the space I am talking about.
Here is my xaml. I put the border around it so I could show the space I am talking about.
<
Border
BorderBrush
=
"Red"
BorderThickness
=
"2"
HorizontalAlignment
=
"Left"
>
<
telerik:RadHorizontalLinearGauge
HorizontalAlignment
=
"Left"
Height
=
"100"
Width
=
"325"
Margin
=
"2"
VerticalAlignment
=
"Top"
>
<
telerik:HorizontalLinearScale
Min
=
"0"
Max
=
"100"
MajorTicks
=
"1"
MiddleTicks
=
"1"
MinorTicks
=
"1"
LabelTemplate
=
"{StaticResource EmptyLabel}"
RelativeX
=
"0"
RelativeY
=
"0.2"
/>
<
telerik:HorizontalLinearScale
Min
=
"0"
Max
=
"100"
LabelLocation
=
"Inside"
MajorTickLocation
=
"Inside"
MiddleTickLocation
=
"Inside"
MinorTickLocation
=
"Inside"
RelativeX
=
"0"
RelativeY
=
"0.2"
>
<
telerik:HorizontalLinearScale.Indicators
>
<
telerik:BarIndicator
Value
=
"0"
StrokeThickness
=
"0"
StartWidth
=
"0.06"
IsAnimated
=
"True"
/>
</
telerik:HorizontalLinearScale.Indicators
>
<
telerik:HorizontalLinearScale.CustomItems
>
<
Border
telerik:ScaleObject.Value
=
"50"
Style
=
"{StaticResource CustomScaleBorder}"
/>
</
telerik:HorizontalLinearScale.CustomItems
>
</
telerik:HorizontalLinearScale
>
</
telerik:RadHorizontalLinearGauge
>
</
Border
>