Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 29 days 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 (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-16T22:51:27.000Z (almost 5 years ago)
- Last Synced: 2024-11-12T09:13:22.414Z (2 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 };
```![](Docs/Microchart-Bar-Donut.png)
![](Docs/Microchart-Line-Pie.png)
![](Docs/Microchart-Point-Radar.png)
![](Docs/Microchart-RadialGauge.png)### Prism Tabs
This example also demonstrates Prism Tabs. As an FYI, we're currently only using the main page.```csharp
```![](Docs/Prism-TabbedPage-Snip.png)
### 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