stretcharm's avatar
stretcharm
Memorable Member
7 years ago

PowerBI Custom Visuals

Its been a while since this Visual Explorer by Anonymous   

https://community.powerbi.com/t5/Data-Stories-Gallery/Power-BI-Custom-Visuals-Explorer/m-p/187266

stopped working so I decided to build a new version.

 

You can filter using a variety of fields. There are 2 main pages for one for all and and another recent updates.

You can drill through to a publisher page or the visual details.

 

Follow me on twitter https://twitter.com/StretchArm1 for updates


Other gallery entries

PowerBI/SQL Server and Microsoft Business Application Related YouTube Videos
https://community.powerbi.com/t5/Data-Stories-Gallery/PowerBI-SQL-Server-and-Microsoft-Business-Application-Related/m-p/743806#M2779)

SQL Saturday Sessions https://community.powerbi.com/t5/Data-Stories-Gallery/Pass-SQLSaturday-Dashboard/m-p/489529#M2153

Microsoft Bus App Summit & SQL Bits videos

https://community.powerbi.com/t5/Data-Stories-Gallery/Search-Microsoft-based-Business-Application-videos-and/m-p/714344#M2679

and for any SSIS users

https://community.powerbi.com/t5/Data-Stories-Gallery/SSIS-Catalog-DB-Dashboard/td-p/244677

Most code is also here https://github.com/stretcharm

 

 

 

15 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    Love the use of the new visuals that have been added since the one I made.  

    Looks great!

     

    Alex

  • stretcharm's avatar
    stretcharm
    Memorable Member

    Added a few tweaks.

     

    PowerBI/R Visual Types

    Certified on Lists

    Github Links

    and refresh time

     

    • otravers's avatar
      otravers
      Community Champion

      That was fast! Small bug though, you have some extra html markup at the end of your Github links that prevents them from working properly.

      • stretcharm's avatar
        stretcharm
        Memorable Member

         


        otravers wrote:

        That was fast! Small bug though, you have some extra html markup at the end of your Github links that prevents them from working properly.


        Thanks, fixed most of them. Will get a few stragglers tomorrow.

  • Thanks for this - will be very well used I suspect. What visual did you use for the main slicer? I've not seen that before but it looks good and is really functional.

      • GreetSmekens's avatar
        GreetSmekens
        Regular Visitor

        Hi,

         

        I cannot seem to merge multiple filters.

         

        Let say I want city, age and sex  as facets and the respective locations, gender and age categories as instances.

        this to filter sportsparticipation on a shapemap.

        Bit similar to yoour example. But I can't add multiple facets or instances.

        Could you point me in the right direction?

        thanks!

  • Anonymous's avatar
    Anonymous
    Not applicable

    Excellent! Thank you!

  • otravers's avatar
    otravers
    Community Champion

    Well done and useful, thank you, this is appreciated.

     

    Most of these custom visuals can also be found on Github, where more information about changes can be found (there's no changelog on AppSource), users can submit bug reports and feature requests, etc. For example:

    https://github.com/Microsoft/powerbi-visuals-timeline/

     

    It would be awesome if you could 1) add links to Github repos whenever available, and 2) retrieve data about these repos (e.g. number of commits, open and closed issues, contributors...). I realize this is more work/time which you may or may not want to commit :)

    • stretcharm's avatar
      stretcharm
      Memorable Member

      I've added the github links if they are are in the descriptions.

      Also a tag so you can filter them.

       

      The refresh is a bit tempremental from the app website on the service so I think trying to get github data will probably break it.

    • stretcharm's avatar
      stretcharm
      Memorable Member

      This report is currently broken. It was written before the web by example feature was added to powerbi so it could be written much better now.

      This will get you all the names and some details. You have loop over the different pages. My version I did all the parsing and extracting in M so it was not the easiest to work with and is prone to failing when the site changes.

       

      let
          Source = Web.BrowserContents("https://appsource.microsoft.com//en-us/marketplace/apps?src=office&product=power-bi-visuals&page=1"),
          #"Extracted Table From Html" = Html.Table(Source, {{"Name", ".c-heading6"}, {"Author", ".provider"}, {"Ratings", ".ratingsCount"}, {"Description", ".c-paragraph-4"}, {"Code", ".tileLink", each [Attributes][href]?}}, [RowSelector=".spza_tileWrapper"])
      in
          #"Extracted Table From Html"