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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Jelle
Frequent Visitor

Graph Hover Options

Hello,

 

When you hover over the line in a graph, you see the full value. Is it possible to change the way this is shown? With data labels, you can change the display units to thousands for example. I would like to do this when you hover over the line, if it is possible. 

 

Any help would be greatly appreciated.

 

Jelle

2 ACCEPTED SOLUTIONS

Hi @Jelle,

 

Write measures to get the value of each row per category or what ever u want.

 

Suppose,

 

Measure for compare = Measure for compare = CALCULATE(SUMX(your_table_name,your_table_name[amount]), ALLEXCEPT(your_table_name,your_table_name[name]))

 

next measure,

 

Num format =
IF (
[Measure for compare] >= 1000000,
FORMAT ( [Measure for compare], "#,##0,,m" ),
IF (
[Measure for compare] >= 1000,
FORMAT ( [Measure for compare], "#,##0,k" ),
FORMAT ( [Measure for compare], "General Number" )
)
)

 

check and let me know..... 🙂

View solution in original post

Hi @Jelle,

After test, another way you can set the display values in thousands, please review the first screenshot, it display the original value of each year, you can choose "thousands"(highlighted in yellow background) on the data label under Format, please see the second screenshot.

picture1picture1picture2picture2

Best Regards,
Angelia

View solution in original post

9 REPLIES 9
mehaboob557
Resolver IV
Resolver IV

Hi @Jelle,

 

use the below graph visual as shown below and put the values in line values. Then goto y-axis under that display dropdown. select what ever you wanna display like thousands, auto, e.t.c

 

graph.PNGgraphsq.PNG

Thanks @mehaboob557

 

Tijdelijk (dit mag verwijderd worden zodra iemand dit ziet).PNG

 

I was trying to change this, I should have added a picture the first time. Is is possible to show those numbers in thousands?

Hi @Jelle,

 

write the output how u want.

 

I am guessing like,

 

22000  --> 22K 

 

is this what u want?

Hi @mehaboob557,

 

That's right, sorry for not being more clear. 

Hi @Jelle,

 

Write measures to get the value of each row per category or what ever u want.

 

Suppose,

 

Measure for compare = Measure for compare = CALCULATE(SUMX(your_table_name,your_table_name[amount]), ALLEXCEPT(your_table_name,your_table_name[name]))

 

next measure,

 

Num format =
IF (
[Measure for compare] >= 1000000,
FORMAT ( [Measure for compare], "#,##0,,m" ),
IF (
[Measure for compare] >= 1000,
FORMAT ( [Measure for compare], "#,##0,k" ),
FORMAT ( [Measure for compare], "General Number" )
)
)

 

check and let me know..... 🙂

Thank you very much for helping @mehaboob557. I will try this and report back later!

Hi @Jelle,

After test, another way you can set the display values in thousands, please review the first screenshot, it display the original value of each year, you can choose "thousands"(highlighted in yellow background) on the data label under Format, please see the second screenshot.

picture1picture1picture2picture2

Best Regards,
Angelia

Hi @Jelle,

Please mark the right reply as answer if you have resolved your issue, so more people will get helpful information from here. Thanks for understanding.

Best Regards,
Angelia


Ok... If its working fine... Give a kudo and accept the solutions

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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