Hi,
Somebody know how work with charts on Corona SDK?
I need to implement some results through charts within Pie or Lines or Bars…
Could you help me?
Hi,
Somebody know how work with charts on Corona SDK?
I need to implement some results through charts within Pie or Lines or Bars…
Could you help me?
I’ve had good luck using the google-image-charts for some time in one of my apps.
Works well, but its going offline in late April next year.
How can I do something likes you did?
I don’t have any idea how procced this one…
Did you manually? or Is there some plugin, or command?
Google Image Charts… https://developers.google.com/chart/image/
Its pretty easy - just make an http call, and save the result.
https://chart.googleapis.com/chart?cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World
EXCELENT IDEA, but for do it, have you use the netwebView?
no - simple require(“socket.http”) and require(“ltn12”).
setup your request body with the google image chart api syntax -
make your http request
put the image file in your data sink coming back from the http request.
I didnt invent it, just re purposed basic http post. Used the forum here to get the detail.
Holler if you need help - I probably could post a snippet later today.
I’ve had good luck using the google-image-charts for some time in one of my apps.
Works well, but its going offline in late April next year.
How can I do something likes you did?
I don’t have any idea how procced this one…
Did you manually? or Is there some plugin, or command?
Google Image Charts… https://developers.google.com/chart/image/
Its pretty easy - just make an http call, and save the result.
https://chart.googleapis.com/chart?cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World
EXCELENT IDEA, but for do it, have you use the netwebView?
no - simple require(“socket.http”) and require(“ltn12”).
setup your request body with the google image chart api syntax -
make your http request
put the image file in your data sink coming back from the http request.
I didnt invent it, just re purposed basic http post. Used the forum here to get the detail.
Holler if you need help - I probably could post a snippet later today.