https://github.com/damiansuess/test.microchartsdemo
Microcharts Xamarin.Forms Demo
https://github.com/damiansuess/test.microchartsdemo
dryioc microcharts prism xamarin xamarin-android xamarin-forms xamarin-uwp xeno-innovations
Last synced: 3 months ago
JSON representation
Microcharts Xamarin.Forms Demo
- Host: GitHub
- URL: https://github.com/damiansuess/test.microchartsdemo
- Owner: DamianSuess
- Created: 2019-12-21T01:11:17.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-16T22:51:27.000Z (over 5 years ago)
- Last Synced: 2025-02-14T14:42:42.200Z (5 months ago)
- Topics: dryioc, microcharts, prism, xamarin, xamarin-android, xamarin-forms, xamarin-uwp, xeno-innovations
- Language: C#
- Size: 217 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Overview
This demonstrates a test app for the various Microcharts' charts in C# using Xamarin for mobile and desktop development.## Microcharts Demo
In this demo we're using [MoneyFox's Microcharts](https://github.com/MoneyFox/Microcharts) because their NuGet is a little more up-to-date with bugfixes (*Oct, 2019*) vs the main [Microcharts](https://github.com/dotnet-ad/Microcharts)'s last update of Feb, 2019.Many thanks goes out to the Microcharts team! We're checking out your repo and we're excited for what you're doing.
### Types of charts
```csharp
var chart = new BarChart() { Entries = entries };
var chart = new DonutChart() { Entries = entries };
var chart = new LineChart() { Entries = entries };
var chart = new PieChart() { Entries = entries };
var chart = new PointChart() { Entries = entries };
var chart = new RadarChart() { Entries = entries };
var chart = new RadialGaugeChart() { Entries = entries };
```


### Prism Tabs
This example also demonstrates Prism Tabs. As an FYI, we're currently only using the main page.```csharp
```
### References
* [MoneyFox.Microcharts](https://github.com/MoneyFox/Microcharts)
* [Microcharts](https://github.com/dotnet-ad/Microcharts)
* [Prism with DryIoc](https://github.com/PrismLibrary/Prism)
* Xamarin.Forms