I want to use the following cross-platform code to convert my Xojo Chart to a Picture. This works fine on Desktop, but WebChart.DrawInto(…) and MobileChart.DrawInto(…) are not available for Web/iOS.
Var tempPicture As New Picture(myChartXojo.Width, myChartXojo.Height)
myChartXojo.ChartXojo.DrawInto(tempPicture.Graphics, 0, 0)
How can I convert my WebChart and MobileChart into a Picture?
4 posts - 3 participants