{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Widget label styling" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Description" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You may have noticed that long descriptions are truncated. This is because the description length is, by default, fixed." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from ipywidgets import IntSlider\n", "\n", "IntSlider(description='A too long description')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If you need more flexibility to lay out widgets and descriptions, you can use Label widgets directly." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from ipywidgets import HBox, Label\n", "\n", "HBox([Label('A too long description'), IntSlider()])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can change the length of the description to fit the description text. However, this will make the widget itself shorter. You can change both by adjusting the description width and the widget width using the widget's style." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "style = {'description_width': 'initial'}\n", "IntSlider(description='A too long description', style=style)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Natural sizes, and arrangements using HBox and VBox\n", "\n", "Most of the core-widgets have default heights and widths that tile well together. This allows simple layouts based on the `HBox` and `VBox` helper functions to align naturally:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from ipywidgets import Button, HBox, VBox\n", "\n", "words = ['correct', 'horse', 'battery', 'staple']\n", "items = [Button(description=w) for w in words]\n", "left_box = VBox([items[0], items[1]])\n", "right_box = VBox([items[2], items[3]])\n", "HBox([left_box, right_box])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### LaTeX" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Widgets such as sliders and text inputs have a description attribute that can render Latex Equations. The `Label` widget also renders Latex equations." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from ipywidgets import IntSlider, Label" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "IntSlider(description=r'\\(\\int_0^t f\\)')" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "Label(value=r'\\(e=mc^2\\)')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Number formatting\n", "\n", "Sliders have a readout field which can be formatted using Python's [Format Specification Mini-Language](https://docs.python.org/3/library/string.html#format-specification-mini-language). If the space available for the readout is too narrow for the string representation of the slider value, a different styling is applied to show that not all digits are visible." ] } ], "metadata": { "kernelspec": { "display_name": "widgets-tutorial", "language": "python", "name": "widgets-tutorial" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.3" } }, "nbformat": 4, "nbformat_minor": 2 }