Line Plots¶

Line plots are perfect for visualizing trends over time, continuous data relationships, and comparing multiple series.

Basic Usage¶

import rekha as rk
import pandas as pd

# Simple line plot
df = pd.DataFrame({
    'x': [1, 2, 3, 4, 5],
    'y': [2, 4, 3, 5, 6]
})

fig = rk.line(df, x='x', y='y', title='Simple Line Plot')
fig.show()

Parameters¶

See the API Reference for complete parameter documentation.

See Also¶