Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi!
I am trying to bring data from API using d3.json, it works fine but I do not know how to take this info to place it in an element.
This is the code to bring data from API (works fine)
Var datos = d3.json("https://pokeapi.co/api/v2/pokemon/ditto")
.then(
data=> console.log(data));
But I cant not get access to the info from an element
this.rect
.data(datos) // it gives an error receiving "datos"
.attr("x", "100")
.attr("y", "100")
.attr("width", 30)
.attr("height", "300")
.attr("fill", "red");
What am I missing?
Is it possible to get it work?
I watched how to do it outside Power BI
Thanks in advance for your help!