Skip to main content

A lightweight Python library for creating animated, live-updating line charts natively in CustomTkinter — the modern dark-mode Tkinter framework.

Project description

Chinese

ctkchart

A Python library for creating live-updating line charts in CustomTkinter.

PyPI version

Downloads Downloads last 6 month Downloads/Month Downloads/Week

License: MIT


🎥 Watch the Main Demo Video on GitHub


✨ Features

Feature Description
Live Updates Stream and display real-time data continuously
📉 Multiple Lines Plot several lines on the same chart for easy comparison
🎨 Color Customization Tailor colors to match your app's design
🌓 Dynamic Theme Dynamic color change for dark & light themes
🔤 Font Customization Adjust text fonts for better readability
📐 Dimension Control Resize charts to fit any layout
🎛️ Granular Config Fine-grained control via configure_*() methods (v2.2.0+)

📋 See what's new in the latest release →


📦 Installation

pip install ctkchart
import ctkchart

🚀 Quick Start

import customtkinter as ctk
import ctkchart
import random
import threading
import time

root = ctk.CTk()

# 1. Create the chart
chart = ctkchart.CTkLineChart(
    master=root,
    x_axis_values=("a", "b", "c", "d", "e", "f"),
    y_axis_values=(100, 900)
)
chart.place(x=10, y=10)

# 2. Create a line
line = ctkchart.CTkLine(master=chart)

# 3. Stream data in a background thread
def loop():
    while True:
        chart.show_data(line=line, data=[random.choice(range(100, 900))])
        time.sleep(1)

threading.Thread(target=loop, daemon=True).start()
root.mainloop()

🎬 Live Examples

1 — Simple

▶️ View Simple Demo Video on GitHub

View code
import customtkinter as ctk
import ctkchart
import random
import threading
import time

root = ctk.CTk()
root.configure(fg_color="#0d1117")
root.geometry("720x430+200+200")

line_chart = ctkchart.CTkLineChart(
    master=root,
    x_axis_values=("01-01", "01-02", "01-03", "01-04", "01-05", "01-06", "01-07", "01-08", "01-09", "01-10"),
    y_axis_values=(0, 1000)
)
line_chart.pack(pady=15)

line = ctkchart.CTkLine(master=line_chart)

def display_data():
    while True:
        line_chart.show_data(line=line, data=[random.choice(range(0, 1000))])
        time.sleep(0.5)

threading.Thread(target=display_data, daemon=True).start()
root.mainloop()

2 — Styled & Filled Line

▶️ View Styled & Filled Line Demo Video on GitHub

View code
import customtkinter as ctk
import ctkchart
import random
import threading
import time

root = ctk.CTk()
root.configure(fg_color="#0d1117")
root.geometry("720x430+200+200")

line_chart = ctkchart.CTkLineChart(
    master=root,
    x_axis_values=("01-01", "01-02", "01-03", "01-04", "01-05", "01-06", "01-07", "01-08", "01-09", "01-10"),
    y_axis_values=(0, 1000),
    y_axis_label_count=10,
)
line_chart.pack(pady=15)

line = ctkchart.CTkLine(
    master=line_chart,
    size=2,
    fill="enabled"
)

def display_data():
    while True:
        line_chart.show_data(line=line, data=[random.choice(range(0, 1000))])
        time.sleep(0.5)

threading.Thread(target=display_data, daemon=True).start()
root.mainloop()

3 — 2 Lines with Different Styles

▶️ View 2 Lines Demo Video on GitHub

View code
import customtkinter as ctk
import ctkchart
import random
import threading
import time

root = ctk.CTk()
root.configure(fg_color=("#ffffff", "#0d1117"))
root.geometry("720x430+200+200")

line_chart = ctkchart.CTkLineChart(
    master=root,
    x_axis_values=("01-01", "01-02", "01-03", "01-04", "01-05", "01-06", "01-07", "01-08", "01-09", "01-10"),
    y_axis_values=(0, 1000),
    y_axis_label_count=10,
)
line_chart.pack(pady=15)

line1 = ctkchart.CTkLine(
    master=line_chart,
    color=("#5dffb6", "#5dffb6"),
    size=2,
    style="dashed",
    style_type=(10, 5),
)

line2 = ctkchart.CTkLine(
    master=line_chart,
    color=("#FFBAD2", "#FFBAD2"),
    size=2,
    point_highlight="enabled",
    point_highlight_color=("#FFBAD2", "#FFBAD2"),
)

def display_data():
    while True:
        line_chart.show_data(line=line1, data=[random.choice(range(0, 1000))])
        line_chart.show_data(line=line2, data=[random.choice(range(0, 1000))])
        time.sleep(0.5)

threading.Thread(target=display_data, daemon=True).start()
root.mainloop()

4 — 3 Lines with Different Styles

▶️ View 3 Lines Demo Video on GitHub

View code
import customtkinter as ctk
import ctkchart
import random
import threading
import time

root = ctk.CTk()
root.configure(fg_color=("#ffffff", "#0d1117"))
root.geometry("720x430+200+200")

line_chart = ctkchart.CTkLineChart(
    master=root,
    x_axis_values=("01-01", "01-02", "01-03", "01-04", "01-05", "01-06", "01-07", "01-08", "01-09", "01-10"),
    y_axis_values=(0, 1000),
    y_axis_label_count=10,
)
line_chart.pack(pady=15)

line1 = ctkchart.CTkLine(master=line_chart, size=2, fill="enabled")

line2 = ctkchart.CTkLine(
    master=line_chart,
    color=("#5dffb6", "#5dffb6"),
    size=2,
    style="dashed",
    style_type=(10, 5),
)

line3 = ctkchart.CTkLine(
    master=line_chart,
    color=("#FFBAD2", "#FFBAD2"),
    size=2,
    point_highlight="enabled",
    point_highlight_color=("#FFBAD2", "#FFBAD2"),
)

def display_data():
    while True:
        line_chart.show_data(line=line1, data=random.choices(range(0, 1000), k=1))
        line_chart.show_data(line=line2, data=random.choices(range(0, 1000), k=1))
        line_chart.show_data(line=line3, data=random.choices(range(0, 1000), k=1))
        time.sleep(0.5)

threading.Thread(target=display_data, daemon=True).start()
root.mainloop()

5 — With Grid Sections

▶️ View Grid Sections Demo Video on GitHub

View code
import customtkinter as ctk
import ctkchart
import random
import threading
import time

root = ctk.CTk()
root.configure(fg_color=("#ffffff", "#0d1117"))
root.geometry("720x430+200+200")

line_chart = ctkchart.CTkLineChart(
    master=root,
    x_axis_values=("01-01", "01-02", "01-03", "01-04", "01-05", "01-06", "01-07", "01-08", "01-09", "01-10"),
    y_axis_values=(0, 1000),
    y_axis_label_count=10,
    y_axis_section_count=10,
    x_axis_section_count=10,
)
line_chart.pack(pady=15)

line1 = ctkchart.CTkLine(
    master=line_chart,
    color=("#5dffb6", "#5dffb6"),
    size=2,
    style="dashed",
    style_type=(10, 5),
)

line2 = ctkchart.CTkLine(
    master=line_chart,
    color=("#FFBAD2", "#FFBAD2"),
    size=2,
    point_highlight="enabled",
    point_highlight_color=("#FFBAD2", "#FFBAD2"),
)

def display_data():
    while True:
        line_chart.show_data(line=line1, data=[random.choice(range(0, 1000))])
        line_chart.show_data(line=line2, data=[random.choice(range(0, 1000))])
        time.sleep(0.5)

threading.Thread(target=display_data, daemon=True).start()
root.mainloop()

6 — Light and Dark theme

For every parameter that involves color in ctkchart, you can provide either:

  • A single string representing the color.
  • A tuple of two strings where the first string represents the color for the light theme and the second string represents the color for the dark theme.

▶️ View Dynamic Theme Demo Video on GitHub


📚 Documentation

Explore all parameters, configuration methods, and advanced usage:


👥 Contributors

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

ctkchart-2.2.1.tar.gz (35.7 kB view details)

Uploaded Source

Built Distribution

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

ctkchart-2.2.1-py3-none-any.whl (34.0 kB view details)

Uploaded Python 3

File details

Details for the file ctkchart-2.2.1.tar.gz.

File metadata

  • Download URL: ctkchart-2.2.1.tar.gz
  • Upload date:
  • Size: 35.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for ctkchart-2.2.1.tar.gz
Algorithm Hash digest
SHA256 849b42c65152f66d216dad67d025a620705db4b8c9897d4a6448e6bae9b6e0d6
MD5 0178f41eca7cbda9b47b1bcff5006b2b
BLAKE2b-256 445c07b7d3c8730118422738c9e0a1c420f3025fe551932036f709e81f727cf5

See more details on using hashes here.

File details

Details for the file ctkchart-2.2.1-py3-none-any.whl.

File metadata

  • Download URL: ctkchart-2.2.1-py3-none-any.whl
  • Upload date:
  • Size: 34.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for ctkchart-2.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e20fd326945b124be91d4a337eea04805078ce944af7439d26316dea08b0c27a
MD5 76c516c42a72b701ebf4614af1a08f0f
BLAKE2b-256 17f42ba23c3ed1d24d15612be7267f8c65902bab3104ffe1f81094e488a571bf

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