Hello. I'm just starting with ArcGIS JavaScript and I want to know if is possible embed a dashboard saved in ArcGIS Online like embed a Map saved in ArcGIS Online. Is there something like this:
const webMap = new WebMap({
portalItem: {
id: Id,
portal: {
url: "https://www.arcgis.com"
}
}
});
const view = new MapView({
map: webMap,
container: "viewDiv"
}); but to display dashboards?
Thanks in advance.