Skip to content

rafntor/Eto.Microcharts

Repository files navigation

Eto.Microcharts

Build Quality Gate Status NuGet License

Provides an Eto.Forms view control for Microcharts.

Demo applications : https://nightly.link/rafntor/Eto.Microcharts/workflows/build/master

Quickstart

Use NuGet to install Eto.Microcharts then create a Eto.Microcharts.ChartView like in the following example:

var entries = new Microcharts.ChartEntry[]
   {
      new Microcharts.ChartEntry(200) { Label = "January", ValueLabel = "200", Color = SkiaSharp.SKColors.CornflowerBlue },
      new Microcharts.ChartEntry(400) { Label = "February", ValueLabel = "400", Color = SkiaSharp.SKColors.ForestGreen },
      new Microcharts.ChartEntry(-100) { Label = "March", ValueLabel = "-100", Color = SkiaSharp.SKColors.MediumVioletRed }
   };
this.Content = new Eto.Microcharts.ChartView() { Chart = new Microcharts.RadarChart { Entries = entries, AnimationProgress = 100 } };

About

Provides an Eto.Forms view control for Microcharts

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages