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-circle_x-function-in-python/ below:

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

bokeh.plotting.figure.circle_x() 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. The

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.circle_x() Function

The

circle_x() function

in plotting module of bokeh library is used to Configure and add circle_x glyphs to this Figure.

Syntax: circle_x(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: Other Parameters: These parameters are **kwargs that are described below: Return: This method return the GlyphRenderer value.

Below examples illustrate the bokeh.plotting.figure.circle_x() 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.circle_x(x = [1, 2, 3], y = [3, 7, 5], size = 20,
         color ="green", alpha = 0.6)
  
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.circle_x(x, y, fill_color ="red",
           line_color ="green", size = 8)
 
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