Disabling hover animation and piechart moving. #854
Unanswered
SCLD-JMcCoard
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We upgraded from 2.0.0-beta.101 to 2.0.0-beta.700 to resolve issues where the doughnut had a gap at 0 and 100%, but now we are seeing hover animations which was previously disabled.
Our chart code from 101:
<lvc:PieChart Grid.Row="0" Height="200" Width="200" TooltipPosition="Hidden" Series="{Binding Series}" Total="{Binding TotalProcessedControlsCount}" InitialRotation="-90"/>
We've tried setting EasingFunction to {x:Null} and AnimationsSpeed to 0.
<lvc:PieChart Grid.Row="0" EasingFunction="{x:Null}" AnimationsSpeed="0" Height="200" Width="200" TooltipPosition="Hidden" Series="{Binding Series}" Total="{Binding TotalProcessedControlsCount}" InitialRotation="-90"/>
The doughnut graphic still moves.
Beta Was this translation helpful? Give feedback.
All reactions