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` |