for doing a linechart with quickchart it i nescessary to handover multiple “datapoints” to quickchart.
see below: >>> data: [93, -29, -17, -8, 73, 98, 40],
{
type: ‘line’,
data: {
labels: [‘January’, ‘February’, ‘March’, ‘April’, ‘May’, ‘June’, ‘July’],
datasets: [
{
label: ‘My First dataset’,
backgroundColor: ‘rgb(255, 99, 132)’,
borderColor: ‘rgb(255, 99, 132)’,
data: [93, -29, -17, -8, 73, 98, 40],
fill: false,
},
with MagicText it is not possible to handover multiple datapoints to QuickChart.io - MagicText only gives options for calculation “sum/average/min-max” of the datapoints …
how can i solve this problem?
p.s: the “line-Chart” from adalo - market place does not work because i want to show 2 sets of data in my line-chart …
many thanks in advance!