Hi there,
I am trying to get the LinearGauge to work in the DataTemplate of a bound WPF ListView. However, it doesn't seem to work in this scenario. A gauge is displayed for each item in the list that the ListView is bound to, but each gauge is only displayed with its default properties - neither static or bound properties have any effect on the appearance.
By way of example, I have boiled this down to the simplest example of simply trying to show a list of gauges with the Maximum scale value set to 500. However, what is displayed is a list of gauges with their default maximum of 100.
<ListView ItemsSource="{Binding ListOfThings}">
<ListView.ItemTemplate>
<DataTemplate>
<syncfusion:SfLinearGauge>
<syncfusion:SfLinearGauge.MainScale>
<syncfusion:LinearScale Maximum="500" >
</syncfusion:LinearScale>
</syncfusion:SfLinearGauge.MainScale>
</syncfusion:SfLinearGauge>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
Is this a bug or an unsupported scenario?
Thanks
Chris