Hello all, I'm exploring Phoenix charts and I have my query like this:
const ds = 'DS_Name'
const select = ['dept_code_name', 'absval', 'trx_date'];
const where = ['account = 8981', 'dept_code = 459', 'trx_date last 1 month'];
const dategrain = ['trx_date by month'];
const query = `/data/v1/${ds}?fields=${select.join()}
&filter=${where.join()}
&dategrain=${dategrain.join()}
&orderby=trx_date
`;
domo.get(query).then(function(data){
console.log("Data", data);
});
Manually filtering my dataset, it returns 176 rows of data, which I'm also getting in the console

The issue is that it's not rendering the chart, I have it set up to a simple Bar Chart. Console is returning these messages:

Any ideas of why this happens? Let me know if you need more info or code snippets.