Hi all,
Since I can use google charts with the json file below, I am unable to make his call. I would like to have an example that works.
json file:
google.visualization.Query.setResponse(
{
version: "0.7",
status: "ok",
reqId: 0,
table: {
cols: [
{id: "DATE", label: "DATE", type: "string"},
{id: "TOTAL", label: "TOTAL", type: "string"}
],
rows: [
{c: [
{v: "01\/07\/19"},
{v: "19506"}
]}
,{c: [
{v: "02\/07\/19"},
{v: "19409"}
]}
,{c: [
{v: "03\/07\/19"},
{v: "18380"}
]}
,{c: [
{v: "04\/07\/19"},
{v: "19423"}
]}
,{c: [
{v: "05\/07\/19"},
{v: "20851"}
]}
,{c: [
{v: "06\/07\/19"},
{v: "15379"}
]}
,{c: [
{v: "07\/07\/19"},
{v: "6227"}
]}
,{c: [
{v: "08\/07\/19"},
{v: "20324"}
]}
,{c: [
{v: "09\/07\/19"},
{v: "19955"}
]}
,{c: [
{v: "10\/07\/19"},
{v: "22530"}
]}
,{c: [
{v: "11\/07\/19"},
{v: "10266"}
]}
,{c: [
{v: "12\/07\/19"},
{v: "19304"}
]}
,{c: [
{v: "13\/07\/19"},
{v: "14530"}
]}
,{c: [
{v: "14\/07\/19"},
{v: "5820"}
]}
,{c: [
{v: "15\/07\/19"},
{v: "21763"}
]}
,{c: [
{v: "16\/07\/19"},
{v: "23497"}
]}
,{c: [
{v: "17\/07\/19"},
{v: "21897"}
]}
,{c: [
{v: "18\/07\/19"},
{v: "21124"}
]}
,{c: [
{v: "19\/07\/19"},
{v: "20228"}
]}
,{c: [
{v: "20\/07\/19"},
{v: "13727"}
]}
,{c: [
{v: "21\/07\/19"},
{v: "4340"}
]}
]
}
}
)