Hi,
Here is my example:
<Syncfusion:SfCircularProgressBar x:Name="MarqueeProgressBar" Progress="{Binding Path=Current}" IsIndeterminate="{Binding Path=IsIndeterminateState}" Height="270" Width="270" Minimum="0" Maximum="100" >
<Syncfusion:SfCircularProgressBar.ProgressContent>
<StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Top">
<TextBlock x:Name="lblProcessing" Text="{Binding Path=Message}" FontSize="14" TextAlignment="Center" TextWrapping="WrapWithOverflow" MinHeight="23" MaxHeight="190" MaxWidth="190"/>
<TextBlock Text="{Binding Progress,StringFormat={}{0}%}" FontSize="14" TextAlignment="Center" DataContext ="{x:Reference MarqueeProgressBar}" Margin="5"/>
</StackPanel>
</Syncfusion:SfCircularProgressBar.ProgressContent>
</Syncfusion:SfCircularProgressBar>
When i run application it trows following error:
"A 'Binding' cannot be set on the 'IsIndeterminate' property of type 'SfCircularProgressBar'. A 'Binding' can only be set on a DependencyProperty of a DependencyObject.".
Is there a way to bind this to a property?
Best regards,