Forum Discussion
Doug7983
2 years agoHelper 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...
- 2 years ago
Thanks Doug7983, try the following:
- 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"} ],Let me know if this works
Doug7983
2 years agoHelper 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.
- giammariam2 years agoSolution Sage
Thanks Doug7983, try the following:
- 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"} ],Let me know if this works
- Doug79832 years agoHelper II
You're incredible, giammariam . Thanks so much.