From 2b0a27cb02b6da70ccee5628785d8c4f7cbca0a8 Mon Sep 17 00:00:00 2001 From: Johannes Schiffer Date: Fri, 18 Nov 2022 18:01:47 +0100 Subject: [PATCH] Update changelog --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e56e1bd89..89dd0ea22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,14 @@ NOTE: [`epaint`](crates/epaint/CHANGELOG.md), [`eframe`](crates/eframe/CHANGELOG ## Unreleased +* ⚠️ BREAKING: `egui::widgets::plot::Plot::show_axes` renamed to `egui::widgets::plot::Plot::show_grid`. The origin `show_axes` API now refers to the axis labels. ([#2284](https://github.com/emilk/egui/pull/2284)) +### Added +* Added plot axis labels and the required API to customize them. ([#2284](https://github.com/emilk/egui/pull/2284)) +* Added support for multiple x-axis- and y-axis-labels and -ticks per plot. ([#2284](https://github.com/emilk/egui/pull/2284)) + +### Fixed +* Draw plot ticks outside of plotting window. ([#2284](https://github.com/emilk/egui/pull/2284)) ## 0.22.0 - 2023-05-23 - A plethora of small improvements ### ⭐ Added