DevsDNA / DNAXFCircularProgress

Circular progress chart with text and animations
Apache License 2.0
24 stars 5 forks source link

i can not bind on list #3

Open yashshekhada opened 6 years ago

yashshekhada commented 6 years ago

<customcontrol:XFCircleProgress WidthRequest="100" HeightRequest="100" VerticalOptions="CenterAndExpand" HorizontalOptions="CenterAndExpand" Maximun="100" Minimun="0" Value="{Binding D_info12}" BackColor="LightGray" ForeColor="Green" BarHeight="5" AnimationDuration="1000" Grid.Row="0"/>

Galle94 commented 5 years ago

Try changing Binding Properties like static props.

Ex: 'public static readonly BindableProperty ValueProperty = BindableProperty.Create(nameof(Value), typeof(int), typeof(XCircleProgress), default(int));'

This solved my issue.