diff --git a/visual-embed/liveboard/README.md b/visual-embed/liveboard/README.md index ccfe246..4e97883 100644 --- a/visual-embed/liveboard/README.md +++ b/visual-embed/liveboard/README.md @@ -1,5 +1,5 @@ @@ -35,13 +35,13 @@ const embed = new LiveboardEmbed(document.getElementById("ts-embed"), { frameParams: { width: "100%", height: "100%" }, liveboardId: "your-liveboard-id", - // Show only specific actions in the toolbar + // Show only specific actions in the toolbar (allow-list) visibleActions: [Action.DownloadAsPdf, Action.Share, Action.DrillDown], - // Or hide specific actions instead + // Hide specific actions — removes them completely from the UI // hiddenActions: [Action.Edit, Action.Delete], - // Disable actions without hiding them + // Disable specific actions — keeps them visible but grayed out (non-clickable) // disabledActions: [Action.Edit], });