Modern Counter |
Modern Counter is a little history report UI elements.
Modern counter is a small reporting control to show the historical data
Following are some example of the usage of ModernCounters in a real application.
The usage of the modern control is very easy, Use the following XAML code example to create your first counter.
<ui:ModernCounter Header="total requests sent" Data="20,40,29,50,55,2,30" TextColor="Green" Margin="5" x:Name="mcDriver" />
When used with code behind, you can set Data property with a Integer Array. When data has been changed, the changes will be reflected to user interface with a counter animation effect.
mcDriver.Data = new int[]{20, 40, 29, 50, 55, 2, 30};