Really new to Grafana so bear with me. I’ve imported data from Postgre SQL with this query:
let account_name = [],
latitude = [],
longitude = [],
successful_completions = [];
data.series.map((s) => {
account_name = s.fields.find((f) => f.name === "account_name").values;
latitude = s.fields.find((f) => f.name === "latitude").values;
longitude = s.fields.find((f) => f.name === "longitude").values;
successful_completions = s.fields.find((f) => f.name === "successful_completions").values;
});
I want to now display the result in a table format but I can’t seem to find any examples from apache echarts. Is there any way to do this? Thanks.