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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Doug7983
Helper II
Helper II

Deneb | Vega-Lite tooltip issue

With much help from @giammariam , I have a Deneb custom visual that is exactly what I want--except for the tooltip. Deneb is displaying the tooltip for the highlighted null data point as 0.0%. I would expect to see a blank. 

 

data.png

Here is the relevant part of the tooltip block from my spec:

{
"field": "Growth (month over year-ago month)",
"type": "quantitative",
"format": ".1%"
},

 

This works great except for the display of the last data point, which again should be blank, null, "n/a" or something of the sort.

 

Appreciate any help. 

 

 

1 ACCEPTED SOLUTION

Thanks @Doug7983, try the following:

 

  1. In the top transform array add the following: 

 

    ,
    {
      "calculate": "isValid(datum['Growth (MoYaM)']) ? format(datum['Growth (MoYaM)'], '.1%') : ''",
      "as": "Growth (MoYaM) Tooltip"
    },
    {
      "calculate": "isValid(datum['Growth (WDC)']) ? format(datum['Growth (WDC)'], '.1%') : ''",
      "as": "Growth (WDC) Tooltip"
    }

 

Note - if you want it to show null or n/a, replace the '' with null or 'n/a'. As it is currently, it will just be blank

 

2. Update the tooltip to the following:

 

      "tooltip": [
        {"field": "Category", "type": "nominal"},
        {"field": "Date", "type": "temporal"},
        {"field": "Growth (MoYaM) Tooltip", "title": "Growth (MoYaM)", "type": "nominal"},
        {"field": "Growth (WDC) Tooltip", "title": "Growth (WDC)", "type": "nominal"}
      ],

 

giammariam_1-1698953684859.png

 

 

Let me know if this works



Madison Giammaria
Proud to be a Super User 😄
LinkedIn

Do you frequently use Deneb to provide insights to your stakeholders? Have you considered sponsoring this free and open source custom visual? More info here!

View solution in original post

5 REPLIES 5
giammariam
Solution Sage
Solution Sage

Ha, thanks @Doug7983. Feel free to reach out anytime. 



Madison Giammaria
Proud to be a Super User 😄
LinkedIn

Do you frequently use Deneb to provide insights to your stakeholders? Have you considered sponsoring this free and open source custom visual? More info here!
Doug7983
Helper II
Helper II

Hey @giammariam, thanks for the response. Security policies prevent me from sharing a pbix in that manner. Here's the thread where you helped me with the spec.

 

Thank you.

Thanks @Doug7983, try the following:

 

  1. In the top transform array add the following: 

 

    ,
    {
      "calculate": "isValid(datum['Growth (MoYaM)']) ? format(datum['Growth (MoYaM)'], '.1%') : ''",
      "as": "Growth (MoYaM) Tooltip"
    },
    {
      "calculate": "isValid(datum['Growth (WDC)']) ? format(datum['Growth (WDC)'], '.1%') : ''",
      "as": "Growth (WDC) Tooltip"
    }

 

Note - if you want it to show null or n/a, replace the '' with null or 'n/a'. As it is currently, it will just be blank

 

2. Update the tooltip to the following:

 

      "tooltip": [
        {"field": "Category", "type": "nominal"},
        {"field": "Date", "type": "temporal"},
        {"field": "Growth (MoYaM) Tooltip", "title": "Growth (MoYaM)", "type": "nominal"},
        {"field": "Growth (WDC) Tooltip", "title": "Growth (WDC)", "type": "nominal"}
      ],

 

giammariam_1-1698953684859.png

 

 

Let me know if this works



Madison Giammaria
Proud to be a Super User 😄
LinkedIn

Do you frequently use Deneb to provide insights to your stakeholders? Have you considered sponsoring this free and open source custom visual? More info here!

You're incredible, @giammariam . Thanks so much. 

giammariam
Solution Sage
Solution Sage

Hey @Doug7983, thanks for the tag. Can you either send me your .pbix  (here's how), or send me the link to the post where I helped you originally? Happy to dive back into the spec and get this straight for you, I would just would need to refamiliarize myself with what I did.



Madison Giammaria
Proud to be a Super User 😄
LinkedIn

Do you frequently use Deneb to provide insights to your stakeholders? Have you considered sponsoring this free and open source custom visual? More info here!

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.

Top Solution Authors