This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Google Chart API
#6
Docs on how to upload .lp files:
https://forum.logicmachine.net/showthread.php?tid=85

.lp file is a Lua script which is accessible from HTTP. Here's a minimal example that outputs data in JSON format:
Code:
<?
data = { 1, 2, 3 }
print(json.encode(data))

Then, in Custom JavaScript you can load data from .lp like this (in callback function passed to google.charts.setOnLoadCallback). Once data is loaded you can create new chart and draw it.
Code:
$.getJSON('/user/data.lp', function(data) {
  console.log(data);
  // draw chart here
});
Reply


Messages In This Thread
Google Chart API - by andrepneves@gmail.com - 17.05.2018, 11:47
RE: Google Chart API - by admin - 17.05.2018, 12:28
RE: Google Chart API - by admin - 21.05.2018, 12:29
RE: Google Chart API - by admin - 25.05.2018, 06:39
RE: Google Chart API - by domotiqa - 28.02.2020, 06:54
RE: Google Chart API - by toujour - 31.03.2020, 09:07
RE: Google Chart API - by Daniel - 31.03.2020, 09:35
RE: Google Chart API - by toujour - 31.03.2020, 13:00
RE: Google Chart API - by jose_dli - 22.02.2021, 19:50
RE: Google Chart API - by admin - 23.02.2021, 08:50
RE: Google Chart API - by jose_dli - 23.02.2021, 10:05
RE: Google Chart API - by admin - 23.02.2021, 10:20
RE: Google Chart API - by jose_dli - 23.02.2021, 11:29
RE: Google Chart API - by jose_dli - 24.02.2021, 18:21
RE: Google Chart API - by legolas2069 - 06.03.2023, 08:01
RE: Google Chart API - by admin - 06.03.2023, 12:20

Forum Jump: