Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Your file has been submitted successfully. We’re processing it now - please check back in a few minutes to view your report.
12-09-2025 13:37 PM
Hi all! I decided to go on a more fun route and made a very simple version that looks like a game instead. The images are created by chatGPT based on my own personal images when working, prompted to create the image in the styles of GTA. Mostly native visuals are used, while the moving images are via HTML. Hope you like it!
eyJrIjoiY2E0ZDAyYjItN2ViYy00NzljLTllYjUtYzZjNWZlYjNiZDMyIiwidCI6IjgzNzAyM2U4LThiMTctNGVkNS05OWMyLTA1Mzc5MmU1YzRkNSIsImMiOjEwfQ%3D%3D
Love the visuals! They’re clean, informative, and very effective
If anyone wondering how to do it, i had to come up with my own way....
Just create a measure and use it as the "Value" for a content of type "HTML Content"
replace the BASE64_HERE text with your base64 text, should look like the following
iVBORw0KGgoAAAANSUhEUgAAAbAAAAJCCAYAAACh...
and then play with the values for X and Y moving
HTML_IMAGE =
"<div style='width:350px;height:600px;overflow:hidden;'>" &
"<svg xmlns='http://www.w3.org/2000/svg' width='350' height='600'>" &
"<image xlink:href='data:image/png;base64,BASE64_HERE' " &
" x='0' y='0' width='350' height='600'>" &
"<animate attributeName='x' values='0;10;0' dur='2.2s' repeatCount='indefinite'/>" &
"<animate attributeName='y' values='0;10;0' dur='1.2s' repeatCount='indefinite'/>" &
"</image>" &
"</svg>" &
"</div>"
Wow! Playing around with this report is even more fun than the video you put together. I sense a "how did you do that" live stream coming! 😉
Could you please share the pbix?