Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi,
I've been trying to create bullet charts within table with variables. It does not work and outputs "image" icon. I bet that it is SVG code related problem, but since i am not an expert with it and i cant find solution to resolve this problem i would be pleased to get some help 🙂 Here is code below, thanks in advance!
Bullet =
VAR vBackground = "%23ffffff"
VAR vBarColor = Switch(
True(),
[losspln] <= [targetpln], "%2339a964",
[targetpln] = 0, "%23ffa160",
[losspln] > [targetpln], "%23cd1319"
)
VAR vActBarColor = "%23333333"
VAR vTargetBarColor = "%23888888"
// Base Text for drawing
VAR vBaseText =
"data:image/svg+xml;utf8, <svg width='100' height='100' version='1.1' xmlns='http://www.w3.org/2000/svg' style= 'background: " & vBackground & "'>
<rect x='0' y='25' rx='2' ry='2' width='100' height='50' style='fill:" & vBarColor & ";stroke-width:0;fill-opacity:1' />
<rect x='0' y='45' rx='2' ry='2' width=""#Actual"" height='10' style='fill:" & vActBarColor & ";stroke-width:0;fill-opacity:1' />
<rect x=""#Budget"" y='30' rx='2' ry='2' width='6' height='40' style='fill:" & vTargetBarColor & ";stroke:black;stroke-width:0;fill-opacity:1;stroke-opacity:1' />
</svg>"
VAR vObjects = ALL(Resource[Resource Short])
VAR vMaxActual = MAXX( vObjects, [losspln] )
VAR vMaxGoal = MAXX( vObjects, [targetpln] )
VAR vXAxisRangeBase = MAX( vMaxActual, vMaxGoal )
VAR vActual = INT( DIVIDE( [losspln], vXAxisRangeBase ) * 90 )
VAR vGoal = INT( DIVIDE( [targetpln], vXAxisRangeBase ) * 90 )
VAR vReturn = SUBSTITUTE( SUBSTITUTE( vBaseText, "#Actual", vActual ), "#Goal", vGoal )
RETURN IF( [losspln], vReturn, BLANK() )
Solved! Go to Solution.
What does your svg code show when you change it to text and view in focus mode?
You'll need to be careful your width and height values are properly escaped...
width=""#Actual"" will need to be something like... width="&"'"&"#Actual"&"'"&"
Proud to be a Super User!
What does your svg code show when you change it to text and view in focus mode?
You'll need to be careful your width and height values are properly escaped...
width=""#Actual"" will need to be something like... width="&"'"&"#Actual"&"'"&"
Proud to be a Super User!
Yes, that obviously was a problem with apostrophes. Changed also ' to ""
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
85 | |
66 | |
51 | |
45 |
User | Count |
---|---|
216 | |
89 | |
82 | |
66 | |
57 |