Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
I'm using the power bi tooltips and would like them to appear above my nodes.
When I set the coordinates to the topmost position of my node, the triangle part of the tooltip starts there but goes to the right or left. The tooltip box itself will then overlap with my node.
Is it possible to make the tooltip appear in a certain direction? e.g. from my coordinates the tooltip should be centered above them
Instead of this:
I want something like this:
This is the code for showing the tooltip:
const bRect: DOMRect = cellView.el.getBoundingClientRect();
tooltipService.show({
dataItems: dataItem,
identities: [],
coordinates: [bRect.left + bRect.width / 2, bRect.top],
isTouchEvent: false,
});
Solved! Go to Solution.
Hi @MatsSchrader,
The main Power BI window currently manages the orientation of the tooltip relative to the supplied coordinates. The current API does not have the functionality to override this, so if you feel particularly strongly about it, you would need to request the feature from MS. This can either be done by creating an issue in the API repo or email them directly - pbicvsupport@microsoft.com
Regards,
Daniel
Proud to be a Super User!
My course: Introduction to Developing Power BI Visuals
On how to ask a technical question, if you really want an answer (courtesy of SQLBI)
Hi @MatsSchrader,
The main Power BI window currently manages the orientation of the tooltip relative to the supplied coordinates. The current API does not have the functionality to override this, so if you feel particularly strongly about it, you would need to request the feature from MS. This can either be done by creating an issue in the API repo or email them directly - pbicvsupport@microsoft.com
Regards,
Daniel
Proud to be a Super User!
My course: Introduction to Developing Power BI Visuals
On how to ask a technical question, if you really want an answer (courtesy of SQLBI)
Hi @MatsSchrader ,
You might look at this visual
or https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-visual-tooltips?tabs=desktop-new
or https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-tooltips?tabs=powerbi-desktop
for some good info.
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel
Proud to be a Super User!