Skip to content

Commit bc2a78a

Browse files
committed
[docs] update scatter composite example.
1 parent 76434e1 commit bc2a78a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/scatter_chart_two_datasets.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ fn main() {
2323

2424
// You can use your own iterable as data as long as its items implement the `PointDatum` trait.
2525
let scatter_data_1 = vec![(20, 90), (12, 54), (25, 70), (33, 40)];
26-
let scatter_data_2 = vec![(120, 10), (143, 34), (170, 14), (180, 13)];
26+
let scatter_data_2 = vec![(120, 10), (143, 34), (170, 14), (190, 13)];
2727

2828
// Create Scatter view that is going to represent the data as points.
2929
let scatter_view_1 = ScatterView::new()

0 commit comments

Comments
 (0)