Hi there,
I’m trying to create a dynamic Radar graph from Airtable data. But it seems my dataFields isn’t working?
Here is my code:
{
type: 'radar',
data: {
labels: ['Catalytic', 'Impact', 'Equity', 'Return', 'Leverage', 'Risk'],
},
options: {
plugins: {
airtable: {
apiKey:
'my_api_key',
url: 'my_Airtable_view_URL',
dataFields: ['Spider: Catalytic', 'Spider: Impact', 'Spider: Equity', 'Spider: Return', 'Spider: Leverage', 'Spider: Risk'],
},
},
scale: {
ticks: {
suggestedMin: 1,
suggestedMax: 5,
stepSize: 1,
},
},
},
}
However, the generated result is erroneous. I can’t tell what’s going on:
Any ideas?