> For the complete documentation index, see [llms.txt](https://docs.infotopics.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.infotopics.com/showmemore/features/funnel-chart/tooltips.md).

# Tooltips

<figure><img src="/files/ozCOZlyIL9awW5CE82W4" alt=""><figcaption></figcaption></figure>

### Tooltip customization

The Funnel Chart allows you to customize the content of tooltips based on your needs. Tooltips appear when hovering over a stage and can display additional context such as values, percentages, and performance metrics.

You can define the content using **shortcodes**, which dynamically insert values from your data. This makes it easy to create informative tooltips without changing your dataset.

***

### Example

Here is an example of a customized tooltip using shortcodes:

```
<Stage><br>
<MeasureName>: <MeasureValue><br>
vs previous: <PercentOfPrevious><br>
vs start: <PercentOfFirst>
```

In this example:

* The stage name is displayed at the top
* The measure name and value are shown below
* Conversion percentages are included for additional insight

***

### Available shortcodes

You can use the following placeholders to build your tooltip:

* `<Stage>`
* `<MeasureName>`
* `<MeasureValue>`
* `<TargetName>`
* `<TargetValue>`
* `<VarianceToTarget>`
* `<PercentToTarget>`
* `<PercentOfFirst>`
* `<PercentOfPrevious>`
* `<Rank>`

***

### Formatting options

Tooltips support basic HTML formatting, allowing you to control how the content is displayed.

You can use:

* `<br>` for line breaks
* `<b>` or `<strong>` for emphasis
* `<span>` for custom styling

Example:

```
<span style="font-weight:bold;"><Stage></span><br>
<MeasureValue>
```

***

### Notes

* Use tooltips to provide additional detail without cluttering the chart
* Combine values and percentages for better context
* Keep tooltips concise and easy to scan
* Use `<PercentOfPrevious>` to highlight conversion between stages


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.infotopics.com/showmemore/features/funnel-chart/tooltips.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
