Hi Team,
We are trying to scroll the embed dashboard page and its hanging right now. Can you please help on this.
We are using latest version of amazon-quicksight-embedding-sdk v2.10.0 and .net code will produce the embed URL for this
below are the client side code changes
async function loadDashboard() {
const valueToCheck = await checkValueExistence();
if (valueToCheck.length > 0) {
const embedDashboard = async (embbedURL = valueToCheck) => {
const {
createEmbeddingContext,
} = QuickSightEmbedding;
console.log(embbedURL);
const embeddingContext = await createEmbeddingContext();
const containerDiv = document.getElementById("embedding-container");
const frameOptions = {
url: embbedURL,
container: containerDiv,
height: "100%",
width: "100%"
};
const contentOptions = {
toolbarOptions: {
export: true,
undoRedo: true,
reset: true,
bookmarks: true
},
attributionOptions: {
overlayContent: false,
}
};
const embeddedDashboard = await embeddingContext.embedDashboard(frameOptions, contentOptions);
};
await embedDashboard();
}
}
<div style="height:100%" id="embedding-container"></div>
On scroll, lot of events are hitting and it may impact to load the page.
We need your help to scroll smoothly and there should not be any hanging.
Thanks