Skip to content

Commit 268a179

Browse files
authored
Merge branch 'main' into fix-bubblechart
2 parents 14b7d40 + b5c7171 commit 268a179

File tree

4 files changed

+119
-116
lines changed

4 files changed

+119
-116
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@
44

55
### Fixed
66

7+
78
- Change bubblechart behavior on failure.
89
- Fix reference markers on bubblechart with negative values.
10+
- From now lightness channel goes from light (low value) to dark (high value) colors.
11+
912

1013
## [0.11.2] - 2024-06-18
1114

src/chart/main/style.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ Chart Chart::def()
120120
}
121121
}),
122122
.colorPalette = ::Anim::Interpolated<Gfx::ColorPalette>(getDefaultColorPalette()),
123-
.minLightness = -0.4,
124-
.maxLightness = 0.4,
123+
.minLightness = 0.4,
124+
.maxLightness = -0.4,
125125
.lineMinWidth = 0.001,
126126
.lineMaxWidth = 0.01,
127127
.circleMinRadius = 0.005,

0 commit comments

Comments
 (0)