Bokeh Logo Bokeh Menu
  • Github
  • 1.3.2
  • Installation
  • User Guide
  • Gallery
  • Tutorial
  • Reference
  • Releases
  • Developer Guide
  • Search
  • Installation
  • User Guide
  • Quickstart
  • Defining Key Concepts
  • Plotting with Basic Glyphs
  • Providing Data for Plots and Tables
  • Laying out Plots and Widgets
  • Handling Categorical Data
  • Visualizing Network Graphs
  • Mapping Geo Data
  • Configuring Plot Tools
  • Styling Visual Attributes
  • Adding Annotations
  • Adding Interactions
  • Running a Bokeh Server
  • Working in the Notebook
  • Exporting Plots
  • Embedding Plots and Apps
  • Using bokeh Commands
  • Extending Bokeh
  • Leveraging Other Libraries
  • Speeding up with WebGL
  • Developing with JavaScript
  • Learning More
  • Reference Guide
  • bokeh
  • bokeh.application
  • bokeh.client
  • bokeh.colors
  • bokeh.command
  • bokeh.core
  • bokeh.document
  • bokeh.driving
  • bokeh.embed
  • bokeh.events
  • bokeh.io
  • bokeh.layouts
  • bokeh.model
  • bokeh.models
    • bokeh.models.annotations
    • bokeh.models.arrow_heads
    • bokeh.models.axes
    • bokeh.models.callbacks
    • bokeh.models.expressions
    • bokeh.models.filters
    • bokeh.models.formatters
    • bokeh.models.glyphs
      • bokeh.models.glyphs.AnnularWedge
      • bokeh.models.glyphs.Annulus
      • bokeh.models.glyphs.Arc
      • bokeh.models.glyphs.Bezier
      • bokeh.models.glyphs.Ellipse
      • bokeh.models.glyphs.HArea
      • bokeh.models.glyphs.HBar
      • bokeh.models.glyphs.HexTile
      • bokeh.models.glyphs.Image
      • bokeh.models.glyphs.ImageRGBA
      • bokeh.models.glyphs.ImageURL
      • bokeh.models.glyphs.Line
      • bokeh.models.glyphs.MultiLine
      • bokeh.models.glyphs.MultiPolygons
      • bokeh.models.glyphs.Oval
      • bokeh.models.glyphs.Patch
      • bokeh.models.glyphs.Patches
      • bokeh.models.glyphs.Quad
      • bokeh.models.glyphs.Quadratic
      • bokeh.models.glyphs.Ray
      • bokeh.models.glyphs.Rect
      • bokeh.models.glyphs.Segment
      • bokeh.models.glyphs.Step
      • bokeh.models.glyphs.Text
      • bokeh.models.glyphs.VArea
      • bokeh.models.glyphs.VBar
      • bokeh.models.glyphs.Wedge
    • bokeh.models.graphs
    • bokeh.models.grids
    • bokeh.models.layouts
    • bokeh.models.map_plots
    • bokeh.models.mappers
    • bokeh.models.markers
    • bokeh.models.plots
    • bokeh.models.ranges
    • bokeh.models.renderers
    • bokeh.models.scales
    • bokeh.models.selections
    • bokeh.models.sources
    • bokeh.models.textures
    • bokeh.models.tickers
    • bokeh.models.tiles
    • bokeh.models.tools
    • bokeh.models.transforms
    • bokeh.models.widgets.buttons
    • bokeh.models.widgets.groups
    • bokeh.models.widgets.icons
    • bokeh.models.widgets.inputs
    • bokeh.models.widgets.markups
    • bokeh.models.widgets.panels
    • bokeh.models.widgets.sliders
    • bokeh.models.widgets.tables
    • bokeh.models.widgets.widget
  • bokeh.palettes
  • bokeh.plotting
  • bokeh.protocol
  • bokeh.resources
  • bokeh.sampledata
  • bokeh.server
  • bokeh.settings
  • bokeh.sphinxext
  • bokeh.themes
  • bokeh.tile_providers
  • bokeh.transform
  • bokeh.util
  • Developer Guide
  • Getting Set Up
  • Environment Variables
  • Testing
  • Documentation
  • Bokeh Models
  • Server Architecture
  • Language Bindings
  • BokehJS
  • 1.3.2
  • 1.3.1
  • 1.3.0
  • 1.2.0
  • 1.1.0
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
  • 0.13.0
  • 0.12.16
  • 0.12.15
  • 0.12.14
  • 0.12.13
  • 0.12.11
  • 0.12.10
  • 0.12.9
  • 0.12.7
  • 0.12.6
  • 0.12.5
  • 0.12.4
  • 0.12.3
  • 0.12.2
  • 0.12.1
  • 0.12.0
  • 0.11.1
  • 0.11.0
  • 0.10.0
  • 0.9.3
  • 0.9.2
  • 0.9.1
  • 0.9.0
  • 0.8.2
  • 0.8.1
  • 0.8.0
  • 0.7.1
  • 0.7.0
  • 0.6.1
  • 0.6.0
  • 0.5.2
  • 0.5.1
  • 0.5.0
  • 0.4.4
  • 0.4.2
  • 0.4.1
  • 0.4.0
  • 0.3.0
  • 0.2.0
  • 0.1.0

bokeh.models.glyphs¶

Display a variety of visual shapes whose attributes can be associated with data columns from ColumnDataSources.

The full list of glyphs built into Bokeh is given below:

  • AnnularWedge

  • Annulus

  • Arc

  • Bezier

  • Ellipse

  • HArea

  • HBar

  • HexTile

  • Image

  • ImageRGBA

  • ImageURL

  • Line

  • MultiLine

  • MultiPolygons

  • Oval

  • Patch

  • Patches

  • Quad

  • Quadratic

  • Ray

  • Rect

  • Segment

  • Step

  • Text

  • VArea

  • VBar

  • Wedge

All these glyphs share a minimal common interface through their base class Glyph:

class Glyph(**kwargs)[source]¶

Base class for all glyph models.

Note

This is an abstract base class used to help organize the hierarchy of Bokeh model types. It is not useful to instantiate on its own.

  • bokeh.models.glyphs.AnnularWedge
  • bokeh.models.glyphs.Annulus
  • bokeh.models.glyphs.Arc
  • bokeh.models.glyphs.Bezier
  • bokeh.models.glyphs.Ellipse
  • bokeh.models.glyphs.HArea
  • bokeh.models.glyphs.HBar
  • bokeh.models.glyphs.HexTile
  • bokeh.models.glyphs.Image
  • bokeh.models.glyphs.ImageRGBA
  • bokeh.models.glyphs.ImageURL
  • bokeh.models.glyphs.Line
  • bokeh.models.glyphs.MultiLine
  • bokeh.models.glyphs.MultiPolygons
  • bokeh.models.glyphs.Oval
  • bokeh.models.glyphs.Patch
  • bokeh.models.glyphs.Patches
  • bokeh.models.glyphs.Quad
  • bokeh.models.glyphs.Quadratic
  • bokeh.models.glyphs.Ray
  • bokeh.models.glyphs.Rect
  • bokeh.models.glyphs.Segment
  • bokeh.models.glyphs.Step
  • bokeh.models.glyphs.Text
  • bokeh.models.glyphs.VArea
  • bokeh.models.glyphs.VBar
  • bokeh.models.glyphs.Wedge
  • About Us
  • Roadmap
  • Team
  • Citation
  • Contact
  • Join Us
  • Contribute
  • Discourse
  • Github
  • Twitter
  • © Copyright 2015-2019, Anaconda and Bokeh Contributors.