We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a17cd42 commit 82e7b8eCopy full SHA for 82e7b8e
examples/minifb-demo/src/main.rs
@@ -90,8 +90,8 @@ fn main() -> Result<(), Box<dyn Error>> {
90
91
chart
92
.configure_mesh()
93
- .line_style_1(&GREEN.mix(0.2))
94
- .line_style_2(&TRANSPARENT)
+ .bold_line_style(&GREEN.mix(0.2))
+ .light_line_style(&TRANSPARENT)
95
.draw()?;
96
97
chart.draw_series(data.iter().zip(data.iter().skip(1)).map(
src/coord/ranged.rs
@@ -46,8 +46,8 @@ impl KeyPointWeight {
46
/// Check if this key point weight setting allows light point
47
pub fn allow_light_points(&self) -> bool {
48
match self {
49
- Self::Bold => false,
50
- Self::Any => true,
+ KeyPointWeight::Bold => false,
+ KeyPointWeight::Any => true,
51
}
52
53
0 commit comments