{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "#### **Title**: VLine Element\n", "\n", "**Dependencies**: Matplotlib\n", "\n", "**Backends**: [Matplotlib](./VLine.ipynb), [Bokeh](../bokeh/VLine.ipynb), [Plotly](../plotly/VLine.ipynb)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import numpy as np\n", "import holoviews as hv\n", "from holoviews import opts\n", "\n", "hv.extension('matplotlib')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The ``VLine`` element is a type of annotation that marks a position along the x-axis. Here is a ``VLine`` marking the maximum of a quadratic curve:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "xs = np.linspace(-5,5,100)\n", "ys = -(xs-2)**2\n", "vline = hv.VLine(xs[ys.argmax()])\n", "\n", "(hv.Curve((xs,ys)) * vline).opts(\n", " opts.Curve(color='#D3D3D3'),\n", " opts.VLine(color='red', linewidth=6))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For full documentation and the available style and plot options, use ``hv.help(hv.VLine).``" ] } ], "metadata": { "language_info": { "name": "python", "pygments_lexer": "ipython3" } }, "nbformat": 4, "nbformat_minor": 4 }