I have a bubble chart I am trying to embed into a PowerApp page where I have a Value Score (X) and an Effort Score (Y) broken up by Epic IDs within “Table1”. When I select the image and embed this code, nothing appears. Not sure what I am doing wrong. Note I dont want to hardcode this as we will add new Epics and I would like their X and Y value to prepopulate the chart.
"https://quickchart.io/chart?c="&EncodeUrl("{
type: 'bubble',
data: {
datasets: [
{
label: ["&Concat(Table1,"'"&EpicID&"',")&"],
backgroundColor: 'rgba(255, 99, 132, 0.5)',
borderColor: 'rgb(255, 99, 132)',
borderWidth: 1,
data: [
{
x: ["&Concat(Table1,"'"&'Value Score'&"',")&"],
y: ["&Concat(Table1,"'"&'Effort Score'&"',")&"],
r: 7.4,
},
],
},
],
},
options: {
title: {
display: true,
text: 'Chart.js Bubble Chart',
},
},
}")