I have multiple sharts/reports that I whant do present on a dashboard but I can't figure out how to solve this problem I have with the sunburstdiagrams.
In my reports I tweeked this by adding two diffrent sunbursts and laying them above each other. And I can't do that on a dashboard.
This is what it looks like How do I make the inner circle based on the "... - Bas" values and the outer circle based on "... - Aktuell"?
Solved! Go to Solution.
Hey @TommyMossberg
You can use SVG for that.
Please look at this video, there are more/others, just search for it.
For example:
I have a table with 2 columns, radius 1 and radius 2.
I have added 2 custom columns with the svg/html code.
The only property that is dynamically changed, in this example, is the radius, but any property can be controled and chnaged the same.
Circle1 = "<svg xmlns='http://www/w3/org/200/svg' viewBox='0 0 20 20'> <circle fill=' blue ' r='"& Table1[R2] &"' cx='5' cy='5'> </svg>" Circle2 = " <svg xmlns='http://www/w3/org/200/svg' viewBox='0 0 20 20'> <circle fill=' green ' r='"& Table1[R1] &"' cx='5' cy='5'> </svg>"
Add a HTML viewer and show the columns, should show you circles.
Place the HTML containers on top of each other, so circles will show one on top the other.
This is how it looks (Circle1 on top of Circle2) -->
You can add more HTML tags like opacity, stroke, sizes, colors and more.
Examples of SVG properties - https://www.w3schools.com/html/html5_svg.asp
Good luck!
A
Hi @Anonymous
I've tried with that sunburst visualization but with no luck.
The problem, as I see it, is that the outer circle is still based on the values in the inner circle.
What I want is two circles where the inner circle is based on som columns and the outer circel is based on other columns whitout any dataconecctions between the circles.
They are only for visualization to show actual progress (outer) and planned progress (inner).
Hey @TommyMossberg
You can use SVG for that.
Please look at this video, there are more/others, just search for it.
For example:
I have a table with 2 columns, radius 1 and radius 2.
I have added 2 custom columns with the svg/html code.
The only property that is dynamically changed, in this example, is the radius, but any property can be controled and chnaged the same.
Circle1 = "<svg xmlns='http://www/w3/org/200/svg' viewBox='0 0 20 20'> <circle fill=' blue ' r='"& Table1[R2] &"' cx='5' cy='5'> </svg>" Circle2 = " <svg xmlns='http://www/w3/org/200/svg' viewBox='0 0 20 20'> <circle fill=' green ' r='"& Table1[R1] &"' cx='5' cy='5'> </svg>"
Add a HTML viewer and show the columns, should show you circles.
Place the HTML containers on top of each other, so circles will show one on top the other.
This is how it looks (Circle1 on top of Circle2) -->
You can add more HTML tags like opacity, stroke, sizes, colors and more.
Examples of SVG properties - https://www.w3schools.com/html/html5_svg.asp
Good luck!
A
@Anonymous Thank you!
svg will solve this specific problem for me and give me completely different toolbox to tweak the presentation of different data.
This will be fun!