0

I have been following this link to show images in visuals. Currently, it works for table visual (converting image into base64 text and modelling the column as Image URL format). However, I like to show image in Slicer visual.

Idea is to show image in Slicer to filter data in Matrix visual data which are available on same page. I have achieved to filter matrix visual by showing data as List view & Horizontal Orientation in slicer visual. But how to show image in slicer visual?

Any idea or clue are highly appreciated.

Wanna Coffee
  • 2,742
  • 7
  • 40
  • 66
  • 1
    The standard slicer doesn't support images in the filter experience. The 3rd Party Chiclet slicer does, but only via url – Jon Sep 30 '19 at 08:56
  • Great., This looks matching to my requirement.! :-) In Chiclet slicer I can make use to base64 Image URL also... – Wanna Coffee Sep 30 '19 at 09:20

1 Answers1

1

The standard Power BI slicer doesn't support images to enable selection by that method. The 3rd party Chiclet Slicer does. It will support it via direct url, or you can wrap the base 64 image in a url(ish) for example.

<img src=”data:image/jpg;base64,/9j/4QuLRXhpZgAATU………r3v3Xuve/de697917r//Z”/>
Jon
  • 4,593
  • 3
  • 13
  • 33