Microcharts icon indicating copy to clipboard operation
Microcharts copied to clipboard

Feature Request: Gradient RadialGaugeChart fills

Open C0DESTR0NG opened this issue 6 years ago • 0 comments

Is there a way to use a SkiaSharp color gradient on an individual RadialGaugeChart ring fill? I haven't seen a documented example of a gradient that returns an SKColor value type. I was also thinking of trying to use renderers to attempt to overlay and mask a gradient image.

List<Microcharts.Entry> entries = new List<Microcharts.Entry>
{
     new Microcharts.Entry(50)
     {
          Color = GRADIENT_COLORS_HERE ??
     },
     .
     .
     .

C0DESTR0NG avatar Apr 24 '18 00:04 C0DESTR0NG