Private Function GroupFilterFunc(groupName As Object) As Boolean
Dim resource As IResource = TryCast(groupName, IResource)
Return If(resource Is Nothing, True, Me.GetEnabledGroups().Contains(resource.ResourceName, StringComparer.OrdinalIgnoreCase))
End Function
Return If(resource Is Nothing, True, toMessage=Nullable object must have a value.Return If(resource Is Nothing, False,That causes big problems.
System.InvalidOperationException occurred
Hello
We using the numeric up down
The problem when we give Maximum the user can enter more the maximum
And in the lost focus the control except the maximum value
Is this bug?
Best regards
Ehud
We are populating Carousel control with multiple Radchart at runtime.
In XAML code one single RadChart is defined in the DataTemplate and that DataTemplate is the ItemTemplate of the RadCarousel
In the code behind we are binding the RadCarousel with Collection of data. Each item in the collection corresponds to one RadChart data.
radCarousel.ItemsSource = CountyComparisonList();
Each CountyComparison class has a DataSeries property and we are populating DataSeries with multiple data point as bar series and adding in the Collection.
Say first object in the collection gets populated with 6 data point and second object has two data point and third has one data point. So we need to change the width of each Radchart because they dont have equal number of bars.
In each rad chart we are displaying multiple bar series.
Problem is we are not able to adjust width and height of each individual RadChart populated in the RadCarousel.
How do we do that?
Thanks in advance for any Help
Manidipa