Home » bokeh.plotting.figure.circle_x() Function in Python

bokeh.plotting.figure.circle_x() Function in Python

by Online Tutorials Library

bokeh.plotting.figure.circle_x() Function in Python

Bokeh is a library of Python which is used for data visualization by plotting graphs and charts. The output can be obtained on different platforms such as Notebook, HTML, JavaScript, and browser. The Figure Class is used for creating a new figure on the graph, and it is a subclass of bokeh.plotting that simplifies plot creation with default axes, grids, tools, etc.

bokeh.plotting.figure.circle_x() Function

We can use the circle_x() method of bokeh.plotting module of bokeh library for Configuring and adding circle_x glyphs to this Graphs.

Syntax:

The syntax of circle_x() function is:

Parameters:

  • xs: This is an x-coordinates of the lines.
  • ys: This is a y-coordinates of the lines.
  • line_alpha: It takes the percentage value of line alpha; Its default value is 1.
  • line_cap: It takes the value of line cap for the line; Its default value is butt.
  • line_color: It takes the color of the line as input; Its default value is black.
  • line_dash: It takes the value of line dash such as solid, dashed, dotted, dot-dash, dash-dot [Its default value is solid].
  • line_dash_offset: It takes the value of line dash offset as input; Its default value is 0.
  • line_join: It takes the value of line join as input; Its default value is in bevel.
  • line_width: It takes the value of the width of the line as input; Its default value is 1.
  • mode: It takes one of three values of mode as input: [“before”, “after”, “centre”].
  • name: It takes a user-supplied name for the model as input.
  • tags: It takes user-supplied values for the model as input.

Other Parameters:

  • alpha: It is used for setting all alpha keyword arguments at once.
  • color: It is used for setting all color keyword arguments at once.
  • legend_field: It takes the name of a column as input in the data source that should be used.
  • legend_group: It takes the name of a column as input in the data source that should be used.
  • legend_label: It is used for labeling the legend entry.
  • muted: It is used for determining whether the glyph should be rendered as muted or not; Its default value is False.
  • name: It is used as an optional user-supplied name for attaching to the renderer.
  • source: It is a user-supplying data source.
  • view: It is used to view for filtering the data source.
  • visible: It is used for determining whether the glyph should be rendered or not; Its default value is True.
  • x_range_name: It is used as the name of an extra range to use for mapping x-coordinates.
  • y_range_name: It is used as the name of an extra range to use for mapping y-coordinates.
  • level: It is used for specifying the render level order for this glyph.

Return:

The return of circle_x() function is:

An object of class GlyphRenderer.

Below examples illustrate the bokeh.plotting.figure.circle_x() function in bokeh.plotting:

Example 1:

Output:

bokeh.plotting.figure.circle_x() Function in Python

Example 2:

Output:

bokeh.plotting.figure.circle_x() Function in Python

Conclusion

In this tutorial, we discussed, with the help of examples, the use of bokeh.plotting.figure.circle_x() Function in Python.


You may also like