Hi there.
I’m trying to make Scatter chart with my Airtable’s data.
For example, my JSON is following:
{
type: 'scatter',
data: {
datasets: [
{
label: 'xdata',
backgroundColor: 'rgb(255, 99, 132)',
borderColor: 'rgba(255, 99, 132, 0.2)',
fill: false,
},
],
},
options: {
plugins: {
airtable: {
apiKey: 'myapikey',
url: 'myurl',
labelField: 'xdata',
dataFields: ['ydata',],
},
},
},
}
However chart is not generated.
Maybe, ‘dataFields’ format is wrong, I think. But I have no idea.
How to generate a scatter chart with Airatable’s data on QuickChart API?
I’m sorry for my poor English.
Best regards.