Bokeh Tutorial
Selected Reading
- Bokeh - Discussion
- Bokeh - Useful Resources
- Bokeh - Quick Guide
- Bokeh - Developing with JavaScript
- Bokeh - WebGL
- Bokeh - Extending Bokeh
- Bokeh - Embedding Plots and Apps
- Bokeh - Exporting Plots
- Bokeh - Using Bokeh Subcommands
- Bokeh - Server
- Bokeh - Adding Widgets
- Bokeh - Customising legends
- Bokeh - Styling Visual Attributes
- Bokeh - Plot Tools
- Bokeh - Layouts
- Bokeh - Filtering Data
- Bokeh - ColumnDataSource
- Bokeh - Pandas
- Bokeh - Annotations and Legends
- Bokeh - Axes
- Bokeh - Setting Ranges
- Bokeh - Specialized Curves
- Bokeh - Wedges and Arcs
- Bokeh - Rectangle, Oval and Polygon
- Bokeh - Circle Glyphs
- Bokeh - Area Plots
- Bokeh - Plots with Glyphs
- Bokeh - Basic Concepts
- Bokeh - Jupyter Notebook
- Bokeh - Getting Started
- Bokeh - Environment Setup
- Bokeh - Introduction
- Bokeh - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Bokeh - Styling Visual Attributes
Bokeh - Stypng Visual Attributes
The default appearance of a Bokeh plot can be customised by setting various properties to desired value. These properties are mainly of three types −
Line properties
Following table psts various properties related to pne glyph.
1 | pne_color | color is used to stroke pnes with |
2 | pne_width | This is used in units of pixels as pne stroke width |
3 | pne_alpha | Between 0 (transparent) and 1 (opaque) this acts as a floating point |
4 | pne_join | how to join together the path segments. Defined values are: miter (miter_join), round (round_join), bevel (bevel_join) |
5 | pne_cap | how to terminate the path segments. Defined values are: butt (butt_cap), round (round_cap), square (square_cap) |
6 | pne_dash | BThis is used for a pne style. Defined values are: sopd , dashed , dotted , dotdash , dashdot |
7 | pne_dash_offset | The distance into the pne_dash in pixels that the pattern should start from |
Fill properties
Various fill properties are psted below −
1 | fill_color | This is used to fill paths with |
2 | fill_alpha | Between 0 (transparent) and 1 (opaque), this acts as a floating point |
Text properties
There are many text related properties as psted in the following table −
1 | text_font | font name, e.g., times , helvetica |
2 | text_font_size | font size in px, em, or pt, e.g., 12pt , 1.5em |
3 | text_font_style | font style to use normal itapc bold |
4 | text_color | This is used to render text with |
5 | text_alpha | Between 0 (transparent) and 1 (opaque), this is a floating point |
6 | text_apgn | horizontal anchor point for text - left , right , center |
7 | text_basepne | vertical anchor point for text top , middle , bottom , alphabetic , hanging |