graphinglib.FitFromExponential.create_point_at_x#

FitFromExponential.create_point_at_x(x: float, label: str | None = None, face_color: str | Inherit = Inherit, edge_color: str | Inherit = Inherit, marker_size: float | Inherit = Inherit, marker_style: str | Inherit = Inherit, line_width: float | Inherit = Inherit, alpha: float | Inherit = Inherit) Point#

Gets the point on the curve at a given x value.

Parameters:
xfloat

x value of the point.

labelstr, optional

Label to be displayed in the legend.

face_colorstr

Face color of the point. Default depends on the figure_style configuration.

edge_colorstr

Edge color of the point. Default depends on the figure_style configuration.

marker_sizefloat

Size of the point. Typical range is 10 to 100. Default depends on the figure_style configuration.

marker_stylestr

Style of the point. Common values include ".", ",", "o", "v", "^", "<", ">", "s", "p", "*", "h", "H", "+", "x", "D", "d", "|", "_", "P", "X", "None", " ", and "". Default depends on the figure_style configuration.

line_widthfloat

Width of the edge of the point. Typical range is 0 to 3 points. Default depends on the figure_style configuration.

alphafloat

Opacity of the point. Range is 0 (transparent) to 1 (opaque). Default depends on the figure_style configuration.

Returns:
Point object on the curve at the given x value.

Notes

Color parameters accept Matplotlib color formats: named colors ("blue"), short color strings ("b"), hex strings ("#0000ff"), grayscale strings ("0.5"), and RGB/RGBA tuples with values between 0 and 1 ((0, 0, 1) or (0, 0, 1, 0.5)).