Xamarin.iOS, OxyPlot如何将UIColor转换为OxyColor

Xamarin.iOS, OxyPlot How to convert UIColor to OxyColor

我正在使用 OxyPlot 在 xamarin.ios 项目中绘制条形图。我必须更改条形图的条形颜色,它似乎只需要 OxyColor,而且我正在从后端获取 #code。

series.Items.Add(new ColumnItem() { Value = Double.Parse(graph.valueList[i]), Color = OxyColors.Green });

如何将十六进制代码更改为 OxyColor。甚至 UIColor 到 OxyColor?

OxyColor有一个Parse方法,格式为“#FFFFFF00”或“255,200,180,50”的字符串

即:

OxyColor.Parse("#FFFF0000")
OxyColor.Parse("#FF0000")
OxyColor.Parse("255,0,0")
OxyColor.Parse("255,255,0,0")

参考:https://github.com/oxyplot/oxyplot/blob/4db3c45a2acc86b7b11816462cb4f2850c709a11/Source/OxyPlot/Rendering/OxyColor.cs