{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import panel as pn\n", "\n", "pn.extension()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The ``TooltipIcon`` is a tooltip indicator providing a Tooltip. The `value` will be the text inside of the tooltip. \n", "\n", "#### Parameters:\n", "\n", "For details on other options for customizing the component see the [layout](../../how_to/layout/index.md) and [styling](../../how_to/styling/index.md) how-to guides.\n", "\n", "* **``value``** (`str` or `bokeh.models.Tooltip`): The text inside the tooltip.\n", "\n", "___" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The `TooltipIcon` indicator can be instantiated with either a string:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "\n", "pn.widgets.TooltipIcon(value=\"This is a simple tooltip by using a string\")\n", "\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "or as a `bokeh.models.Tooltip`:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from bokeh.models import Tooltip\n", "\n", "pn.widgets.TooltipIcon(value=Tooltip(content=\"This is a tooltip using a bokeh.models.Tooltip\", position=\"right\"))\n" ] }, { "cell_type": "markdown", "metadata": { "tags": [ "parameters" ] }, "source": [ "The `TooltipIcon` can be used to add more information to a widgets:\n", "\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "pn.Row(\n", " pn.widgets.Button(name=\"Click me!\"), \n", " pn.widgets.TooltipIcon(value=\"Nothing happens when you click the button!\")\n", ")" ] } ], "metadata": { "language_info": { "name": "python", "pygments_lexer": "ipython3" } }, "nbformat": 4, "nbformat_minor": 4 }