A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/bokeh-plotting-figure-cross-function-in-python/ below:

bokeh.plotting.figure.cross() function in Python - GeeksforGeeks

bokeh.plotting.figure.cross() function in Python

Last Updated : 15 Jul, 2025

Bokeh is a data visualization library in Python that provides high-performance interactive charts and plots and the output can be obtained in various mediums like notebook, HTML, and server. Figure Class create a new Figure for plotting. It is a subclass of Plot that simplifies plot creation with default axes, grids, tools, etc. 
 

bokeh.plotting.figure.cross() Function


The cross() function in the plotting module of the bokeh library is used to Configure and add Cross glyphs to this Figure. 
 

Syntax: cross(x, y, size=4, angle=0.0, *, angle_units='rad', fill_alpha=1.0, fill_color='gray', line_alpha=1.0, line_cap='butt', line_color='black', line_dash=[], line_dash_offset=0, line_join='bevel', line_width=1, name=None, tags=[], **kwargs)

Parameters: This method accept the following parameters that are described below: 

Return: This method return the GlyphRenderer value. 
 


Below examples illustrate the bokeh.plotting.figure.circle_y() function in bokeh.plotting: 
Example 1: 
 

Python3
# Implementation of bokeh function

import numpy as np
from bokeh.plotting import figure, output_file, show

plot = figure(plot_width=300, plot_height=300)
plot.cross(x=[1, 2, 3], y=[3, 7, 5],
           size=20, color="green", alpha=0.9)

show(plot)

Output: 
 


Example 2: 
 

Python3
# Implementation of bokeh function

import numpy as np
from bokeh.plotting import figure, output_file, show

x = [1, 2, 3, 4, 5]
y = [6, 7, 8, 7, 3]

output_file("geeksforgeeks.html")

p = figure(plot_width=300, plot_height=300)

# add both a line and circles on the
# same plot
p.line(x, y, line_width=2)
p.cross(x, y, fill_color="red",
        line_color="green", size=25)

show(p)

Output: 
 



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4