├── .gitignore ├── .pipelines ├── cdpx_run_ps.cmd ├── package.ps1 ├── pipeline.user.windows.yml ├── restore.ps1 └── version.ps1 ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Capture report views ├── css │ ├── content.css │ ├── header.css │ ├── modal.css │ ├── report.css │ └── share-bookmark.css ├── img │ ├── allviews.svg │ ├── captureview.svg │ ├── contoso.svg │ ├── cross.svg │ ├── spinner.svg │ └── tickicon.svg ├── index.html ├── js │ ├── error_listener.js │ ├── globals.js │ ├── index.js │ ├── session_utils.js │ └── share_bookmark.js └── share_bookmark.html ├── Customize report colors and mode ├── css │ ├── container.css │ ├── dropdown.css │ ├── header.css │ └── report.css ├── img │ ├── contoso.svg │ └── spinner.svg ├── index.html └── js │ ├── error_listener.js │ ├── globals.js │ ├── index.js │ ├── session_utils.js │ └── themes.js ├── Go from insights to quick action ├── css │ ├── dialog_campaign_list.css │ ├── dialog_send_coupon.css │ ├── dialog_success.css │ ├── embed_area_style.css │ └── header_style.css ├── img │ ├── contoso.svg │ ├── cross.svg │ ├── spinner.svg │ └── success.svg ├── index.html └── js │ ├── error_listener.js │ ├── globals.js │ ├── index.js │ └── session_utils.js ├── LICENSE ├── Personalize top insights ├── css │ ├── content.css │ ├── dropdown.css │ ├── header.css │ └── report.css ├── img │ ├── caret.svg │ ├── colspan.svg │ ├── column1.svg │ ├── column2.svg │ ├── column3.svg │ ├── contoso.svg │ ├── rowspan.svg │ └── spinner.svg ├── index.html └── js │ ├── error_listener.js │ ├── globals.js │ ├── index.js │ └── session_utils.js ├── Quickly create and personalize visuals ├── css │ ├── content.css │ ├── header.css │ ├── popup.css │ └── report.css ├── img │ ├── close.svg │ ├── contoso.svg │ ├── disabled-images │ │ ├── center-align.svg │ │ ├── chevron.svg │ │ ├── eraser.svg │ │ ├── left-align.svg │ │ └── right-align.svg │ ├── enabled-images │ │ ├── center-align.svg │ │ ├── chevron.svg │ │ ├── eraser.svg │ │ ├── left-align.svg │ │ └── right-align.svg │ ├── pencil.svg │ └── spinner.svg ├── index.html └── js │ ├── error_listener.js │ ├── globals.js │ ├── index.js │ ├── session_utils.js │ ├── themes.js │ └── visuals.js ├── README.md ├── SECURITY.md ├── SUPPORT.md └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode -------------------------------------------------------------------------------- /.pipelines/cdpx_run_ps.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/.pipelines/cdpx_run_ps.cmd -------------------------------------------------------------------------------- /.pipelines/package.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/.pipelines/package.ps1 -------------------------------------------------------------------------------- /.pipelines/pipeline.user.windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/.pipelines/pipeline.user.windows.yml -------------------------------------------------------------------------------- /.pipelines/restore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/.pipelines/restore.ps1 -------------------------------------------------------------------------------- /.pipelines/version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/.pipelines/version.ps1 -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Capture report views/css/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Capture report views/css/content.css -------------------------------------------------------------------------------- /Capture report views/css/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Capture report views/css/header.css -------------------------------------------------------------------------------- /Capture report views/css/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Capture report views/css/modal.css -------------------------------------------------------------------------------- /Capture report views/css/report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Capture report views/css/report.css -------------------------------------------------------------------------------- /Capture report views/css/share-bookmark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Capture report views/css/share-bookmark.css -------------------------------------------------------------------------------- /Capture report views/img/allviews.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Capture report views/img/allviews.svg -------------------------------------------------------------------------------- /Capture report views/img/captureview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Capture report views/img/captureview.svg -------------------------------------------------------------------------------- /Capture report views/img/contoso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Capture report views/img/contoso.svg -------------------------------------------------------------------------------- /Capture report views/img/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Capture report views/img/cross.svg -------------------------------------------------------------------------------- /Capture report views/img/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Capture report views/img/spinner.svg -------------------------------------------------------------------------------- /Capture report views/img/tickicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Capture report views/img/tickicon.svg -------------------------------------------------------------------------------- /Capture report views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Capture report views/index.html -------------------------------------------------------------------------------- /Capture report views/js/error_listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Capture report views/js/error_listener.js -------------------------------------------------------------------------------- /Capture report views/js/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Capture report views/js/globals.js -------------------------------------------------------------------------------- /Capture report views/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Capture report views/js/index.js -------------------------------------------------------------------------------- /Capture report views/js/session_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Capture report views/js/session_utils.js -------------------------------------------------------------------------------- /Capture report views/js/share_bookmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Capture report views/js/share_bookmark.js -------------------------------------------------------------------------------- /Capture report views/share_bookmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Capture report views/share_bookmark.html -------------------------------------------------------------------------------- /Customize report colors and mode/css/container.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Customize report colors and mode/css/container.css -------------------------------------------------------------------------------- /Customize report colors and mode/css/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Customize report colors and mode/css/dropdown.css -------------------------------------------------------------------------------- /Customize report colors and mode/css/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Customize report colors and mode/css/header.css -------------------------------------------------------------------------------- /Customize report colors and mode/css/report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Customize report colors and mode/css/report.css -------------------------------------------------------------------------------- /Customize report colors and mode/img/contoso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Customize report colors and mode/img/contoso.svg -------------------------------------------------------------------------------- /Customize report colors and mode/img/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Customize report colors and mode/img/spinner.svg -------------------------------------------------------------------------------- /Customize report colors and mode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Customize report colors and mode/index.html -------------------------------------------------------------------------------- /Customize report colors and mode/js/error_listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Customize report colors and mode/js/error_listener.js -------------------------------------------------------------------------------- /Customize report colors and mode/js/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Customize report colors and mode/js/globals.js -------------------------------------------------------------------------------- /Customize report colors and mode/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Customize report colors and mode/js/index.js -------------------------------------------------------------------------------- /Customize report colors and mode/js/session_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Customize report colors and mode/js/session_utils.js -------------------------------------------------------------------------------- /Customize report colors and mode/js/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Customize report colors and mode/js/themes.js -------------------------------------------------------------------------------- /Go from insights to quick action/css/dialog_campaign_list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Go from insights to quick action/css/dialog_campaign_list.css -------------------------------------------------------------------------------- /Go from insights to quick action/css/dialog_send_coupon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Go from insights to quick action/css/dialog_send_coupon.css -------------------------------------------------------------------------------- /Go from insights to quick action/css/dialog_success.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Go from insights to quick action/css/dialog_success.css -------------------------------------------------------------------------------- /Go from insights to quick action/css/embed_area_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Go from insights to quick action/css/embed_area_style.css -------------------------------------------------------------------------------- /Go from insights to quick action/css/header_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Go from insights to quick action/css/header_style.css -------------------------------------------------------------------------------- /Go from insights to quick action/img/contoso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Go from insights to quick action/img/contoso.svg -------------------------------------------------------------------------------- /Go from insights to quick action/img/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Go from insights to quick action/img/cross.svg -------------------------------------------------------------------------------- /Go from insights to quick action/img/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Go from insights to quick action/img/spinner.svg -------------------------------------------------------------------------------- /Go from insights to quick action/img/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Go from insights to quick action/img/success.svg -------------------------------------------------------------------------------- /Go from insights to quick action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Go from insights to quick action/index.html -------------------------------------------------------------------------------- /Go from insights to quick action/js/error_listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Go from insights to quick action/js/error_listener.js -------------------------------------------------------------------------------- /Go from insights to quick action/js/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Go from insights to quick action/js/globals.js -------------------------------------------------------------------------------- /Go from insights to quick action/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Go from insights to quick action/js/index.js -------------------------------------------------------------------------------- /Go from insights to quick action/js/session_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Go from insights to quick action/js/session_utils.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/LICENSE -------------------------------------------------------------------------------- /Personalize top insights/css/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Personalize top insights/css/content.css -------------------------------------------------------------------------------- /Personalize top insights/css/dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Personalize top insights/css/dropdown.css -------------------------------------------------------------------------------- /Personalize top insights/css/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Personalize top insights/css/header.css -------------------------------------------------------------------------------- /Personalize top insights/css/report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Personalize top insights/css/report.css -------------------------------------------------------------------------------- /Personalize top insights/img/caret.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Personalize top insights/img/caret.svg -------------------------------------------------------------------------------- /Personalize top insights/img/colspan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Personalize top insights/img/colspan.svg -------------------------------------------------------------------------------- /Personalize top insights/img/column1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Personalize top insights/img/column1.svg -------------------------------------------------------------------------------- /Personalize top insights/img/column2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Personalize top insights/img/column2.svg -------------------------------------------------------------------------------- /Personalize top insights/img/column3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Personalize top insights/img/column3.svg -------------------------------------------------------------------------------- /Personalize top insights/img/contoso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Personalize top insights/img/contoso.svg -------------------------------------------------------------------------------- /Personalize top insights/img/rowspan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Personalize top insights/img/rowspan.svg -------------------------------------------------------------------------------- /Personalize top insights/img/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Personalize top insights/img/spinner.svg -------------------------------------------------------------------------------- /Personalize top insights/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Personalize top insights/index.html -------------------------------------------------------------------------------- /Personalize top insights/js/error_listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Personalize top insights/js/error_listener.js -------------------------------------------------------------------------------- /Personalize top insights/js/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Personalize top insights/js/globals.js -------------------------------------------------------------------------------- /Personalize top insights/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Personalize top insights/js/index.js -------------------------------------------------------------------------------- /Personalize top insights/js/session_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Personalize top insights/js/session_utils.js -------------------------------------------------------------------------------- /Quickly create and personalize visuals/css/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/css/content.css -------------------------------------------------------------------------------- /Quickly create and personalize visuals/css/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/css/header.css -------------------------------------------------------------------------------- /Quickly create and personalize visuals/css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/css/popup.css -------------------------------------------------------------------------------- /Quickly create and personalize visuals/css/report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/css/report.css -------------------------------------------------------------------------------- /Quickly create and personalize visuals/img/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/img/close.svg -------------------------------------------------------------------------------- /Quickly create and personalize visuals/img/contoso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/img/contoso.svg -------------------------------------------------------------------------------- /Quickly create and personalize visuals/img/disabled-images/center-align.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/img/disabled-images/center-align.svg -------------------------------------------------------------------------------- /Quickly create and personalize visuals/img/disabled-images/chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/img/disabled-images/chevron.svg -------------------------------------------------------------------------------- /Quickly create and personalize visuals/img/disabled-images/eraser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/img/disabled-images/eraser.svg -------------------------------------------------------------------------------- /Quickly create and personalize visuals/img/disabled-images/left-align.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/img/disabled-images/left-align.svg -------------------------------------------------------------------------------- /Quickly create and personalize visuals/img/disabled-images/right-align.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/img/disabled-images/right-align.svg -------------------------------------------------------------------------------- /Quickly create and personalize visuals/img/enabled-images/center-align.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/img/enabled-images/center-align.svg -------------------------------------------------------------------------------- /Quickly create and personalize visuals/img/enabled-images/chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/img/enabled-images/chevron.svg -------------------------------------------------------------------------------- /Quickly create and personalize visuals/img/enabled-images/eraser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/img/enabled-images/eraser.svg -------------------------------------------------------------------------------- /Quickly create and personalize visuals/img/enabled-images/left-align.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/img/enabled-images/left-align.svg -------------------------------------------------------------------------------- /Quickly create and personalize visuals/img/enabled-images/right-align.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/img/enabled-images/right-align.svg -------------------------------------------------------------------------------- /Quickly create and personalize visuals/img/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/img/pencil.svg -------------------------------------------------------------------------------- /Quickly create and personalize visuals/img/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/img/spinner.svg -------------------------------------------------------------------------------- /Quickly create and personalize visuals/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/index.html -------------------------------------------------------------------------------- /Quickly create and personalize visuals/js/error_listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/js/error_listener.js -------------------------------------------------------------------------------- /Quickly create and personalize visuals/js/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/js/globals.js -------------------------------------------------------------------------------- /Quickly create and personalize visuals/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/js/index.js -------------------------------------------------------------------------------- /Quickly create and personalize visuals/js/session_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/js/session_utils.js -------------------------------------------------------------------------------- /Quickly create and personalize visuals/js/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/js/themes.js -------------------------------------------------------------------------------- /Quickly create and personalize visuals/js/visuals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/Quickly create and personalize visuals/js/visuals.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-Embedded-Showcases/HEAD/package.json --------------------------------------------------------------------------------