Skip to content

Releases: Thisal-D/ctkchart

v2.1.1

02 Jan 21:27
Compare
Choose a tag to compare

Full Changelog: v2.0.3...v2.1.1

v2.0.3

02 Jan 21:23
Compare
Choose a tag to compare

Full Changelog: v2.0.2...v2.0.3

v2.0.2

02 Jan 21:20
Compare
Choose a tag to compare

Full Changelog: v2.0.0...v2.0.2

v2.0.0

02 Jan 21:16
Compare
Choose a tag to compare

Full Changelog: v1.0.0...v2.0.0

v1.0.0

02 Jan 21:13
Compare
Choose a tag to compare

Full Changelog: v0.0.2...v1.0.0

v0.0.2

02 Jan 21:09
8af7054
Compare
Choose a tag to compare

Full Changelog: v0.0.1...v0.0.2

v0.0.1

02 Jan 20:53
Compare
Choose a tag to compare

First Release: v0.0.1

v2.1.6

29 Nov 09:01
da1a786
Compare
Choose a tag to compare

What's Changed

🛠️ Bug Fixes

Line Chart Theme Initialization Issue

A thank you to @Bromson3105 for reporting and investigating the issue related to theme configuration for CTkLineChart. The problem occurred when the ThemeManager was initialized before creating chart widgets, resulting in the error:

Line Chart theme configure failed: 'CTkLineChart' object has no attribute '_CTkLineChart__y_axis_frame'

Fix:
The ThemeManager initialization has been updated to run after the chart object is created, resolving the issue.

Steps to Update:
To get the fix, update to the latest version by running:

pip install --upgrade ctkchart

Feel free to test the updated release and share any further feedback! 🎉

v2.1.5

24 Nov 20:06
731c78b
Compare
Choose a tag to compare

What's Changed

  • New Method Added to CTkLineChart Object

    Method Name Description Parameters Return Type
    clear_data Clears the data for all lines within the chart, ensuring that only the most recent visible data points are retained. If the total data points exceed the maximum visible points, the older data is removed from each line's data. This method ensures that the chart displays only the relevant portion of data based on the maximum visible range. - None
  • New Method Added to CTkLine Object

    Method Name Description Parameters Return Type
    clear_data Clears the data for a specific line, ensuring that only the most recent visible data points are retained. If the line's data exceeds the maximum visible points, the older data is trimmed. This method allows each line to independently clean its data, ensuring it remains within the visible range. - None

v2.1.4

05 Jul 16:58
358707d
Compare
Choose a tag to compare

What's Changed

  • New Method Added to CTkLineChart Object

    Method Name Description Parameters Return Type
    get_line_area Get the are of specific line line: ctkchart.CTkLine float
    get_lines_area Get the are of all lines - float