Skip to main content

A Streamlit component that displays a line chart with draggable points. Users can click and drag points on the chart to adjust their values. The updated data of the chart is returned.

Project description

st-draggable-line-chart

Streamlit component that displays a line chart with draggable points. Users can click and drag points on the chart to adjust their values. The updated data of the chart is returned.

Installation instructions

pip install draggable-line-chart

Usage

  • data (pd.Series, pd.DataFrame): The data to display in the chart. Index is always X values and columns are Y values. Columns should have only numeric values. Series.name is the trace name. If a DataFrame is provided, the column names are the trace names.

  • options (dict[str: any], optional): A dictionary of options for the chart. It can include the following keys:

    • 'title': The title of the chart.
    • 'colors': A list of colors for the chart traces. Each color must be a hexadecimal color code. The order of the colors corresponds to the order of the columns.
    • 'x_label': Text in x-axis.
    • 'y_label': Text in y-axis.
    • 'x_grid': A boolean indicating whether to display the grid for the x-axis.
    • 'y_grid': A boolean indicating whether to display the grid for the y-axis.
    • 'legend': A boolean indicating whether to display the legend. If not provided, the legend will be displayed by default.
    • 'legend_position': The position of the legend. It can be 'top', 'left', 'bottom', or 'right'.
    • 'legend_align': The alignment of the legend. It can be 'start', 'center', or 'end'. If not provided, default options will be used.
  • key (str, optional): An optional string to use as the unique key for the widget. If this is None, and the component's arguments are changed, the component will be re-mounted in the Streamlit frontend and lose its current state.

Returns

  • new_data (pd.Series, pd.DataFrame): The data of the chart after user interaction. The format is the same as the input format.

Raises

  • ValueError: If the data is not a pandas Series or DataFrame or if the DataFrame does not have only numeric columns.

Example

import pandas as pd
import streamlit as st

from draggable_line_chart import draggable_line_chart

st.header("Draggable Plot 1!")
initial_data = pd.DataFrame({
    "Col1": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
    "Col2": [1, 4, 9, 16, 25, 36, 49, 64, 81, 200],
    "Col3": [-1, -2, -3, -4, -5, -6, -7, -8, -50, -100]
})

plot_options = {
    "title": "My Plot",
    "colors": ['#1f77b4', '#ff7f0e', '#2ca02c'],
    "x_label": "X Axis",
    "y_label": "Y Axis",
    "x_grid": True,
    "y_grid": True,
    'legend_position': 'right',
    'legend_align': 'start',
}
new_data = draggable_line_chart(data=initial_data, options=plot_options)
new_data

st.header("Draggable Plot 2!")
series_data = pd.Series([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
new_series_data = draggable_line_chart(data=series_data)
new_series_data

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

draggable-line-chart-0.3.1.tar.gz (810.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

draggable_line_chart-0.3.1-py3-none-any.whl (817.3 kB view details)

Uploaded Python 3

File details

Details for the file draggable-line-chart-0.3.1.tar.gz.

File metadata

  • Download URL: draggable-line-chart-0.3.1.tar.gz
  • Upload date:
  • Size: 810.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.5

File hashes

Hashes for draggable-line-chart-0.3.1.tar.gz
Algorithm Hash digest
SHA256 cb83b4b0e72b3394b2b0a8e02769a9cc3eaee868696fbe6c0a4c58aaf3095c97
MD5 c83fbb106739325cc89c7af57f8f081c
BLAKE2b-256 7af69eb395e8848a64d4ae35e1b310a9c81cc2c93609734a1a41f53590cb1e6d

See more details on using hashes here.

File details

Details for the file draggable_line_chart-0.3.1-py3-none-any.whl.

File metadata

File hashes

Hashes for draggable_line_chart-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8e8171c95bcb4054a899961ccd9eba197749a41a4993b84465e4d6b354d313cd
MD5 bb5dee1728a69f5f8f15c7f2711a5e23
BLAKE2b-256 9cc4d153c9bf1a830c5f1e826bac8f61642b1a147c3fe31352ef98619fef0f6b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page