├── .gitignore ├── Capabilities ├── dataViewMappings.md └── readme.md ├── ChangeLog.md ├── Colors.md ├── Glossary.md ├── Readme.md ├── Roadmap ├── README.md └── colorpalette.md ├── Selection.md ├── Visual └── readme.md ├── VisualProject.md ├── images ├── DataViewMappingResultSingle.png ├── dataRoleDisplay.png └── stackedColumnSelected.png └── tools ├── CONTRIBUTING.md ├── README.md └── docs ├── CertificateAddOSX.md ├── CertificateAddWindows.md ├── CertificateRemoveOSX.md ├── CertificateRemoveWindows.md ├── CertificateSetup.md ├── DebugVisualSetup.md └── images ├── mac0.png ├── mac1.png ├── mac2.png ├── macRemove1.png ├── macRemove2.png ├── macRemove3.png ├── macRemove4.png ├── pbivizStart.png ├── portalEnable1.png ├── portalEnable2.png ├── portalEnable3.png ├── portalEnable4.png ├── windows0.png ├── windows1.png ├── windows2.png ├── windows3.png ├── windows4.png ├── windows5.png ├── windows6.png ├── windowsRemove1.png ├── windowsRemove2.png ├── windowsRemove3.png ├── windowsRemove4.png └── windowsRemove5.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /Capabilities/dataViewMappings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/Capabilities/dataViewMappings.md -------------------------------------------------------------------------------- /Capabilities/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/Capabilities/readme.md -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /Colors.md: -------------------------------------------------------------------------------- 1 | #Host Color Pallet 2 | 3 | Not yet implemented -------------------------------------------------------------------------------- /Glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/Glossary.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/Readme.md -------------------------------------------------------------------------------- /Roadmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/Roadmap/README.md -------------------------------------------------------------------------------- /Roadmap/colorpalette.md: -------------------------------------------------------------------------------- 1 | #Color Palette 2 | -------------------------------------------------------------------------------- /Selection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/Selection.md -------------------------------------------------------------------------------- /Visual/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/Visual/readme.md -------------------------------------------------------------------------------- /VisualProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/VisualProject.md -------------------------------------------------------------------------------- /images/DataViewMappingResultSingle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/images/DataViewMappingResultSingle.png -------------------------------------------------------------------------------- /images/dataRoleDisplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/images/dataRoleDisplay.png -------------------------------------------------------------------------------- /images/stackedColumnSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/images/stackedColumnSelected.png -------------------------------------------------------------------------------- /tools/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/CONTRIBUTING.md -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/docs/CertificateAddOSX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/CertificateAddOSX.md -------------------------------------------------------------------------------- /tools/docs/CertificateAddWindows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/CertificateAddWindows.md -------------------------------------------------------------------------------- /tools/docs/CertificateRemoveOSX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/CertificateRemoveOSX.md -------------------------------------------------------------------------------- /tools/docs/CertificateRemoveWindows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/CertificateRemoveWindows.md -------------------------------------------------------------------------------- /tools/docs/CertificateSetup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/CertificateSetup.md -------------------------------------------------------------------------------- /tools/docs/DebugVisualSetup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/DebugVisualSetup.md -------------------------------------------------------------------------------- /tools/docs/images/mac0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/mac0.png -------------------------------------------------------------------------------- /tools/docs/images/mac1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/mac1.png -------------------------------------------------------------------------------- /tools/docs/images/mac2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/mac2.png -------------------------------------------------------------------------------- /tools/docs/images/macRemove1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/macRemove1.png -------------------------------------------------------------------------------- /tools/docs/images/macRemove2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/macRemove2.png -------------------------------------------------------------------------------- /tools/docs/images/macRemove3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/macRemove3.png -------------------------------------------------------------------------------- /tools/docs/images/macRemove4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/macRemove4.png -------------------------------------------------------------------------------- /tools/docs/images/pbivizStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/pbivizStart.png -------------------------------------------------------------------------------- /tools/docs/images/portalEnable1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/portalEnable1.png -------------------------------------------------------------------------------- /tools/docs/images/portalEnable2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/portalEnable2.png -------------------------------------------------------------------------------- /tools/docs/images/portalEnable3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/portalEnable3.png -------------------------------------------------------------------------------- /tools/docs/images/portalEnable4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/portalEnable4.png -------------------------------------------------------------------------------- /tools/docs/images/windows0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/windows0.png -------------------------------------------------------------------------------- /tools/docs/images/windows1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/windows1.png -------------------------------------------------------------------------------- /tools/docs/images/windows2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/windows2.png -------------------------------------------------------------------------------- /tools/docs/images/windows3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/windows3.png -------------------------------------------------------------------------------- /tools/docs/images/windows4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/windows4.png -------------------------------------------------------------------------------- /tools/docs/images/windows5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/windows5.png -------------------------------------------------------------------------------- /tools/docs/images/windows6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/windows6.png -------------------------------------------------------------------------------- /tools/docs/images/windowsRemove1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/windowsRemove1.png -------------------------------------------------------------------------------- /tools/docs/images/windowsRemove2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/windowsRemove2.png -------------------------------------------------------------------------------- /tools/docs/images/windowsRemove3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/windowsRemove3.png -------------------------------------------------------------------------------- /tools/docs/images/windowsRemove4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/windowsRemove4.png -------------------------------------------------------------------------------- /tools/docs/images/windowsRemove5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xornand/PowerBI-visuals-docs/HEAD/tools/docs/images/windowsRemove5.png --------------------------------------------------------------------------------