Using a radial gauge that has a scale of 0 to 12, and a radialrange of 10 to 12. I get the following problems. The needle is not pointing to the right tick...is always off...like 4 will point to almost 4.5. Also the radialrange is off as well, it start around 10.3 instead of 10.
Anybody has seen this kind of issue? This is with 2009 Q3 SP1
<
telerik:RadGauge Width="150" Height="150" Margin="628.459,0,575.115,71.681" Name="radGauge1" VerticalAlignment="Bottom" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation">
<telerik:RadialGauge>
<telerik:RadialScale Name="radialScale" Min="0" Max="12">
<telerik:IndicatorList>
<telerik:Needle x:Name="needle" Value="4"/>
</telerik:IndicatorList>
<telerik:RangeList>
<telerik:RadialRange Min="10"
Max="12.0"
Location="OverCenter"
StartWidth="0.1"
EndWidth="0.1"
Background="Red"
BorderBrush="Red"
StrokeThickness="1"
TickBackground="White"/>
</telerik:RangeList>
</telerik:RadialScale>
</telerik:RadialGauge>
</telerik:RadGauge>
public class LogServiceViewModel : INotifyPropertyChanged, IDisposable |
{ |
public ObservableCollection<CmsLogEntry> LogEntries = new ObservableCollection<CmsLogEntry>(); |
} |
<telerik:RadGridView Name="gridView" ItemsSource="{Binding LogEntries}" AutoGenerateColumns="True"> |
public class LogServiceViewModel : INotifyPropertyChanged, IDisposable |
{ |
public ObservableCollection<CmsLogEntry> LogEntries = new ObservableCollection<CmsLogEntry>(); |
public ObservableCollection<CmsLogEntry> GetLogEntries() |
{ |
return LogEntries; |
} |
} |
<telerik:RadGridView Name="gridView" AutoGenerateColumns="True"> |
public MainWindow() |
{ |
_logServiceModel = new LogServiceModel(); |
_logServiceViewModel = new LogServiceViewModel(_logServiceModel); |
DataContext = _logServiceViewModel; |
gridView.ItemsSource = _logServiceViewModel.GetLogEntries(); |
} |