Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Sdg8481
Helper I
Helper I

SVG Bar Chart within a table

Hi, from searching on the internet i found this brilliant code for adding a barchart into a standard table.

 

However, i can see that ChartScale is hardcoded (at 10,000), however all of my values in the table vastly differ and are independent of each other, therefore a fixed scale doesn't work.

 

How can i adapt the code below so that the Chart Scale is relative to the Maximum value for each row ('Area|Attribute') in the table. Apologies in advance, i'm a complete DAX novice.

 

Dynamic Chart = 
var BaseURL = "https://chart.googleapis.com/chart?"
var ChartType = "cht=bvs"
var ChartScale = "&chds=0,10000"
var ChartSize = "&chs=150x150"
var SeriesColour = "&chco=000000"
var ChartData = "&chd=t:" & CONCATENATEX('D - Current Year Data By Week (for Trend)','D - Current Year Data By Week (for Trend)'[zValue (week) as Measure], ",", 'D - Current Year Data By Week (for Trend)'[Reporting Thursday])
return IF(HASONEVALUE('D - Current Year Data By Week (for Trend)'[Key1: Area|Attribute]), BaseURL & ChartType & ChartScale & ChartSize & SeriesColour & ChartData)
 

Thanks

Stu

1 ACCEPTED SOLUTION

That probably means that internally the SVG defaults the chart scale to 100 if no value is given.

 

In that case you need to provide a dynamic chart scale based on your largest number.

 

Say, your numbers a and b are 4300 and 3500.  Then your chart scale should be a "1"  followed by 

 

(int(LOG10(max(number a,number b))+1) "0"  strings.

View solution in original post

4 REPLIES 4
lbendlin
Super User
Super User

what happens if you use 

 

var chartScale = ""

 

instead?

Hi, thank you that definately helps, especially for when the numbers are relatively small. However, when BOTH numbers start to get large there appears no difference in the bar size.

 

As you can see in the example below, it all seems to work, but when both numbers are above 100, but still have a big difference between them the bar sizes show equal ... when clearly there is a difference.

 

Link to image

 

Yours hopefully

Stuart

That probably means that internally the SVG defaults the chart scale to 100 if no value is given.

 

In that case you need to provide a dynamic chart scale based on your largest number.

 

Say, your numbers a and b are 4300 and 3500.  Then your chart scale should be a "1"  followed by 

 

(int(LOG10(max(number a,number b))+1) "0"  strings.

Thank you that really helped. Your idea of getting the maximum did the trick. Thank you

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors