In the Designer, the transparent color is #00FFFFFF.
In the XUI library, xui.Color_Transparent = 0
In the xChart CustumView Class I get the color with: Graph.ChartBackgroundColor = xui.PaintOrColorToColor(Props.Get("ChartBackgroundColor"))
It retuns : 16777215 (#00FFFFFF).
I would have expected getting 0, the xui.Color_Transparent value, with the xui.PaintOrColorToColor method.
Current workaround:
In the XUI library, xui.Color_Transparent = 0
In the xChart CustumView Class I get the color with: Graph.ChartBackgroundColor = xui.PaintOrColorToColor(Props.Get("ChartBackgroundColor"))
It retuns : 16777215 (#00FFFFFF).
I would have expected getting 0, the xui.Color_Transparent value, with the xui.PaintOrColorToColor method.
Current workaround:
B4X:
Graph.ChartBackgroundColor = xui.PaintOrColorToColor(Props.Get("ChartBackgroundColor"))
If Graph.ChartBackgroundColor = 16777215 Then '#00FFFFFF
Graph.ChartBackgroundColor = xui.Color_Transparent
End If