{"id":16283485,"url":"https://github.com/damiansuess/test.microchartsdemo","last_synced_at":"2026-04-28T08:02:59.248Z","repository":{"id":143243127,"uuid":"229359216","full_name":"DamianSuess/Test.MicrochartsDemo","owner":"DamianSuess","description":"Microcharts Xamarin.Forms Demo","archived":false,"fork":false,"pushed_at":"2020-02-16T22:51:27.000Z","size":222,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-08T18:30:18.287Z","etag":null,"topics":["dryioc","microcharts","prism","xamarin","xamarin-android","xamarin-forms","xamarin-uwp","xeno-innovations"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DamianSuess.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-12-21T01:11:17.000Z","updated_at":"2023-08-27T09:52:14.000Z","dependencies_parsed_at":"2023-07-23T00:32:51.909Z","dependency_job_id":null,"html_url":"https://github.com/DamianSuess/Test.MicrochartsDemo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DamianSuess/Test.MicrochartsDemo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DamianSuess%2FTest.MicrochartsDemo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DamianSuess%2FTest.MicrochartsDemo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DamianSuess%2FTest.MicrochartsDemo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DamianSuess%2FTest.MicrochartsDemo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DamianSuess","download_url":"https://codeload.github.com/DamianSuess/Test.MicrochartsDemo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DamianSuess%2FTest.MicrochartsDemo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32371673,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"online","status_checked_at":"2026-04-28T02:00:07.250Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dryioc","microcharts","prism","xamarin","xamarin-android","xamarin-forms","xamarin-uwp","xeno-innovations"],"created_at":"2024-10-10T19:13:33.326Z","updated_at":"2026-04-28T08:02:59.222Z","avatar_url":"https://github.com/DamianSuess.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Overview\nThis demonstrates a test app for the various Microcharts' charts in C# using Xamarin for mobile and desktop development.\n\n## Microcharts Demo\nIn 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.\n\nMany thanks goes out to the Microcharts team! We're checking out your repo and we're excited for what you're doing.\n\n### Types of charts\n\n```csharp\nvar chart = new BarChart() { Entries = entries };\nvar chart = new DonutChart() { Entries = entries };\nvar chart = new LineChart() { Entries = entries };\nvar chart = new PieChart() { Entries = entries };\nvar chart = new PointChart() { Entries = entries };\nvar chart = new RadarChart() { Entries = entries };\nvar chart = new RadialGaugeChart() { Entries = entries };\n```\n\n![](Docs/Microchart-Bar-Donut.png)\n![](Docs/Microchart-Line-Pie.png)\n![](Docs/Microchart-Point-Radar.png)\n![](Docs/Microchart-RadialGauge.png)\n\n### Prism Tabs\nThis example also demonstrates Prism Tabs. As an FYI, we're currently only using the main page.\n\n```csharp\n  \u003cNavigationPage Title=\"Introduction\"\u003e\n    \u003cx:Arguments\u003e\n      \u003clocal:ChartIntroView Title=\"Intro\" /\u003e\n    \u003c/x:Arguments\u003e\n  \u003c/NavigationPage\u003e\n\n  \u003cNavigationPage Title=\"Sample 1\"\u003e\n    \u003cx:Arguments\u003e\n      \u003clocal:ChartSample1View Title=\"Sample A\" /\u003e\n    \u003c/x:Arguments\u003e\n  \u003c/NavigationPage\u003e\n\n  \u003clocal:ChartSample2View Title=\"Sample B\" /\u003e\n```\n\n![](Docs/Prism-TabbedPage-Snip.png)\n\n\n### References\n* [MoneyFox.Microcharts](https://github.com/MoneyFox/Microcharts)\n* [Microcharts](https://github.com/dotnet-ad/Microcharts)\n* [Prism with DryIoc](https://github.com/PrismLibrary/Prism)\n* Xamarin.Forms\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdamiansuess%2Ftest.microchartsdemo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdamiansuess%2Ftest.microchartsdemo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdamiansuess%2Ftest.microchartsdemo/lists"}