The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I want to add data values in a table format at the bottom of a bar chart, using a combo chart (line and stacked column chart). To do that, I created some measures with fixed values like -1, -2, ... and added them to the line section of the combo chart.
Then, I want to change the label of these lines to show the corresponding value instead of -1, -2, ...
So I went into data labels, selected the line and changed the value to a measure which returns the value to be shown. The result? Power BI still shows -1 instead of the label measure value. I checked this using a measure TEST = 1 and this is the result:
Here is what I selected in the visual settings:
When I change the visual to a line chart, the label is shown correctly, so this seems to be a bug with the combo charts. Does anyone know a workaround? Thank you!
Solved! Go to Solution.
Hi @Fabrice_Windus ,
Yep, this is a known quirk with combo charts in Power BI — the line data labels don’t always respect dynamic measure values when combined with columns. It works fine in a standalone line chart, but combo visuals can behave differently due to rendering priorities.
Here’s a workaround you can try:
LineLabel = IF(SELECTEDVALUE('YourTable'[Category]) = "X", [YourActualMeasure], BLANK())
If none of that works, you might consider using a custom visual like Deneb or Charticulator for more control over label rendering.
Let me know if you want help building a sample measure or visual config.
If my response resolved your query, kindly mark it as the Accepted Solution to assist others. Additionally, I would be grateful for a 'Kudos' if you found my response helpful.
translation and formatting supported by AI
Hi @Fabrice_Windus ,
I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If the response has addressed your query, please accept it as a solution so that other community members can find it easily.
Best Regards,
Menaka.
Community Support Team
Hi @Fabrice_Windus ,
Thanks for reaching out to the Microsoft fabric community forum.
I would also take a moment to thank @burakkaragoz , for actively participating in the community forum and for the solutions you’ve been sharing in the community forum. Your contributions make a real difference.
May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.
Best Regards,
Menaka.
Community Support Team
Hi @Fabrice_Windus ,
Yep, this is a known quirk with combo charts in Power BI — the line data labels don’t always respect dynamic measure values when combined with columns. It works fine in a standalone line chart, but combo visuals can behave differently due to rendering priorities.
Here’s a workaround you can try:
LineLabel = IF(SELECTEDVALUE('YourTable'[Category]) = "X", [YourActualMeasure], BLANK())
If none of that works, you might consider using a custom visual like Deneb or Charticulator for more control over label rendering.
Let me know if you want help building a sample measure or visual config.
If my response resolved your query, kindly mark it as the Accepted Solution to assist others. Additionally, I would be grateful for a 'Kudos' if you found my response helpful.
translation and formatting supported by AI