Marked Line

A Marked Line Chart integrates specific markings or segments along the data line to highlight particular events, ranges, or important points. The shaded or colored regions in this chart type offer a quick visual reference, enabling users to identify significant periods or anomalies in the data. It's especially useful for emphasizing specific events or changes over a continuous dataset.

The Method To Use

The method is s.plt.marked_line().

It must contain the following input variables:

data: Union[str, DataFrame, List[Dict]],
order: int, 
x: str, 
marks: list,  

Accepts the following input variables as optional:

y: Optional[Union[List[str], str]] = None,
color_mark: str = 'rgba(255, 173, 177, 0.4)',
x_axis_name: Optional[str] = None, 
y_axis_name: Optional[str] = None,
title: Optional[str] = None, 
rows_size: Optional[int] = None, 
cols_size: Optional[int] = None,
padding: Optional[List[int]] = None, 
show_values: Optional[List[str]] = None,
option_modifications: Optional[Dict] = None, 
variant: Optional[str] = None

Examples

The following code:

Variants

By setting the parameter variant to the following values the appearance of the chart can be changed:

variant="clean"

Last updated

Was this helpful?