Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit adb30db

Browse filesBrowse files
committed
add possibility to specifiy only one value for axis range
Signed-off-by: Andrei Gherghescu <8067229+andrei-ng@users.noreply.github.com>
1 parent ba00d85 commit adb30db
Copy full SHA for adb30db

6 files changed

+450-9Lines changed: 450 additions & 9 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎docs/book/src/recipes/basic_charts/line_charts.md‎

Copy file name to clipboardExpand all lines: docs/book/src/recipes/basic_charts/line_charts.md
+10-1Lines changed: 10 additions & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,13 @@ The `to_inline_html` method is used to produce the html plot displayed in this p
5656
{{#include ../../../../../examples/basic_charts/src/main.rs:filled_lines}}
5757
```
5858

59-
{{#include ../../../../../examples/basic_charts/output/inline_filled_lines.html}}
59+
{{#include ../../../../../examples/basic_charts/output/inline_filled_lines.html}}
60+
61+
## Setting Lower or Upper Bounds on Axis
62+
This example demonstrates how to set partial axis ranges using both the new `AxisRange` API and the backward-compatible vector syntax. The x-axis uses both the new `AxisRange::upper()` method and the traditional `vec![None, Some(value)]` syntax to set only an upper bound, while the y-axis uses only the `vec![Some(value), None]` syntax to set a lower bound.
63+
64+
```rust,no_run
65+
{{#include ../../../../../examples/basic_charts/src/main.rs:set_lower_or_upper_bound_on_axis}}
66+
```
67+
68+
{{#include ../../../../../examples/basic_charts/output/inline_set_lower_or_upper_bound_on_axis.html}}
Collapse file

‎examples/basic_charts/Cargo.toml‎

Copy file name to clipboardExpand all lines: examples/basic_charts/Cargo.toml
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ plotly = { path = "../../plotly" }
1010
plotly_utils = { path = "../plotly_utils" }
1111
rand = "0.9"
1212
rand_distr = "0.5"
13+
csv = "1.3"
Collapse file
+151Lines changed: 151 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
sepal_length,sepal_width,petal_length,petal_width,species
2+
5.1,3.5,1.4,0.2,setosa
3+
4.9,3.0,1.4,0.2,setosa
4+
4.7,3.2,1.3,0.2,setosa
5+
4.6,3.1,1.5,0.2,setosa
6+
5.0,3.6,1.4,0.2,setosa
7+
5.4,3.9,1.7,0.4,setosa
8+
4.6,3.4,1.4,0.3,setosa
9+
5.0,3.4,1.5,0.2,setosa
10+
4.4,2.9,1.4,0.2,setosa
11+
4.9,3.1,1.5,0.1,setosa
12+
5.4,3.7,1.5,0.2,setosa
13+
4.8,3.4,1.6,0.2,setosa
14+
4.8,3.0,1.4,0.1,setosa
15+
4.3,3.0,1.1,0.1,setosa
16+
5.8,4.0,1.2,0.2,setosa
17+
5.7,4.4,1.5,0.4,setosa
18+
5.4,3.9,1.3,0.4,setosa
19+
5.1,3.5,1.4,0.3,setosa
20+
5.7,3.8,1.7,0.3,setosa
21+
5.1,3.8,1.5,0.3,setosa
22+
5.4,3.4,1.7,0.2,setosa
23+
5.1,3.7,1.5,0.4,setosa
24+
4.6,3.6,1.0,0.2,setosa
25+
5.1,3.3,1.7,0.5,setosa
26+
4.8,3.4,1.9,0.2,setosa
27+
5.0,3.0,1.6,0.2,setosa
28+
5.0,3.4,1.6,0.4,setosa
29+
5.2,3.5,1.5,0.2,setosa
30+
5.2,3.4,1.4,0.2,setosa
31+
4.7,3.2,1.6,0.2,setosa
32+
4.8,3.1,1.6,0.2,setosa
33+
5.4,3.4,1.5,0.4,setosa
34+
5.2,4.1,1.5,0.1,setosa
35+
5.5,4.2,1.4,0.2,setosa
36+
4.9,3.1,1.5,0.2,setosa
37+
5.0,3.2,1.2,0.2,setosa
38+
5.5,3.5,1.3,0.2,setosa
39+
4.9,3.6,1.4,0.1,setosa
40+
4.4,3.0,1.3,0.2,setosa
41+
5.1,3.4,1.5,0.2,setosa
42+
5.0,3.5,1.3,0.3,setosa
43+
4.5,2.3,1.3,0.3,setosa
44+
4.4,3.2,1.3,0.2,setosa
45+
5.0,3.5,1.6,0.6,setosa
46+
5.1,3.8,1.9,0.4,setosa
47+
4.8,3.0,1.4,0.3,setosa
48+
5.1,3.8,1.6,0.2,setosa
49+
4.6,3.2,1.4,0.2,setosa
50+
5.3,3.7,1.5,0.2,setosa
51+
5.0,3.3,1.4,0.2,setosa
52+
7.0,3.2,4.7,1.4,versicolor
53+
6.4,3.2,4.5,1.5,versicolor
54+
6.9,3.1,4.9,1.5,versicolor
55+
5.5,2.3,4.0,1.3,versicolor
56+
6.5,2.8,4.6,1.5,versicolor
57+
5.7,2.8,4.5,1.3,versicolor
58+
6.3,3.3,4.7,1.6,versicolor
59+
4.9,2.4,3.3,1.0,versicolor
60+
6.6,2.9,4.6,1.3,versicolor
61+
5.2,2.7,3.9,1.4,versicolor
62+
5.0,2.0,3.5,1.0,versicolor
63+
5.9,3.0,4.2,1.5,versicolor
64+
6.0,2.2,4.0,1.0,versicolor
65+
6.1,2.9,4.7,1.4,versicolor
66+
5.6,2.9,3.6,1.3,versicolor
67+
6.7,3.1,4.4,1.4,versicolor
68+
5.6,3.0,4.5,1.5,versicolor
69+
5.8,2.7,4.1,1.0,versicolor
70+
6.2,2.2,4.5,1.5,versicolor
71+
5.6,2.5,3.9,1.1,versicolor
72+
5.9,3.2,4.8,1.8,versicolor
73+
6.1,2.8,4.0,1.3,versicolor
74+
6.3,2.5,4.9,1.5,versicolor
75+
6.1,2.8,4.7,1.2,versicolor
76+
6.4,2.9,4.3,1.3,versicolor
77+
6.6,3.0,4.4,1.4,versicolor
78+
6.8,2.8,4.8,1.4,versicolor
79+
6.7,3.0,5.0,1.7,versicolor
80+
6.0,2.9,4.5,1.5,versicolor
81+
5.7,2.6,3.5,1.0,versicolor
82+
5.5,2.4,3.8,1.1,versicolor
83+
5.5,2.4,3.7,1.0,versicolor
84+
5.8,2.7,3.9,1.2,versicolor
85+
6.0,2.7,5.1,1.6,versicolor
86+
5.4,3.0,4.5,1.5,versicolor
87+
6.0,3.4,4.5,1.6,versicolor
88+
6.7,3.1,4.7,1.5,versicolor
89+
6.3,2.3,4.4,1.3,versicolor
90+
5.6,3.0,4.1,1.3,versicolor
91+
5.5,2.5,4.0,1.3,versicolor
92+
5.5,2.6,4.4,1.2,versicolor
93+
6.1,3.0,4.6,1.4,versicolor
94+
5.8,2.6,4.0,1.2,versicolor
95+
5.0,2.3,3.3,1.0,versicolor
96+
5.6,2.7,4.2,1.3,versicolor
97+
5.7,3.0,4.2,1.2,versicolor
98+
5.7,2.9,4.2,1.3,versicolor
99+
6.2,2.9,4.3,1.3,versicolor
100+
5.1,2.5,3.0,1.1,versicolor
101+
5.7,2.8,4.1,1.3,versicolor
102+
6.3,3.3,6.0,2.5,virginica
103+
5.8,2.7,5.1,1.9,virginica
104+
7.1,3.0,5.9,2.1,virginica
105+
6.3,2.9,5.6,1.8,virginica
106+
6.5,3.0,5.8,2.2,virginica
107+
7.6,3.0,6.6,2.1,virginica
108+
4.9,2.5,4.5,1.7,virginica
109+
7.3,2.9,6.3,1.8,virginica
110+
6.7,2.5,5.8,1.8,virginica
111+
7.2,3.6,6.1,2.5,virginica
112+
6.5,3.2,5.1,2.0,virginica
113+
6.4,2.7,5.3,1.9,virginica
114+
6.8,3.0,5.5,2.1,virginica
115+
5.7,2.5,5.0,2.0,virginica
116+
5.8,2.8,5.1,2.4,virginica
117+
6.4,3.2,5.3,2.3,virginica
118+
6.5,3.0,5.5,1.8,virginica
119+
7.7,3.8,6.7,2.2,virginica
120+
7.7,2.6,6.9,2.3,virginica
121+
6.0,2.2,5.0,1.5,virginica
122+
6.9,3.2,5.7,2.3,virginica
123+
5.6,2.8,4.9,2.0,virginica
124+
7.7,2.8,6.7,2.0,virginica
125+
6.3,2.7,4.9,1.8,virginica
126+
6.7,3.3,5.7,2.1,virginica
127+
7.2,3.2,6.0,1.8,virginica
128+
6.2,2.8,4.8,1.8,virginica
129+
6.1,3.0,4.9,1.8,virginica
130+
6.4,2.8,5.6,2.1,virginica
131+
7.2,3.0,5.8,1.6,virginica
132+
7.4,2.8,6.1,1.9,virginica
133+
7.9,3.8,6.4,2.0,virginica
134+
6.4,2.8,5.6,2.2,virginica
135+
6.3,2.8,5.1,1.5,virginica
136+
6.1,2.6,5.6,1.4,virginica
137+
7.7,3.0,6.1,2.3,virginica
138+
6.3,3.4,5.6,2.4,virginica
139+
6.4,3.1,5.5,1.8,virginica
140+
6.0,3.0,4.8,1.8,virginica
141+
6.9,3.1,5.4,2.1,virginica
142+
6.7,3.1,5.6,2.4,virginica
143+
6.9,3.1,5.1,2.3,virginica
144+
5.8,2.7,5.1,1.9,virginica
145+
6.8,3.2,5.9,2.3,virginica
146+
6.7,3.3,5.7,2.5,virginica
147+
6.7,3.0,5.2,2.3,virginica
148+
6.3,2.5,5.0,1.9,virginica
149+
6.5,3.0,5.2,2.0,virginica
150+
6.2,3.4,5.4,2.3,virginica
151+
5.9,3.0,5.1,1.8,virginica
Collapse file

‎examples/basic_charts/src/main.rs‎

Copy file name to clipboardExpand all lines: examples/basic_charts/src/main.rs
+118-3Lines changed: 118 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ use plotly::{
88
Marker, Mode, Orientation, Pattern, PatternShape,
99
},
1010
layout::{
11-
Annotation, Axis, BarMode, CategoryOrder, Layout, LayoutGrid, Legend, TicksDirection,
12-
TraceOrder,
11+
Annotation, Axis, AxisRange, BarMode, CategoryOrder, Layout, LayoutGrid, Legend,
12+
TicksDirection, TraceOrder,
1313
},
1414
sankey::{Line as SankeyLine, Link, Node},
1515
traces::table::{Cells, Header},
@@ -997,6 +997,119 @@ fn grouped_donout_pie_charts(show: bool, file_name: &str) {
997997
}
998998
// ANCHOR_END: grouped_donout_pie_charts
999999

1000+
// ANCHOR: set_lower_or_upper_bound_on_axis
1001+
fn set_lower_or_upper_bound_on_axis(show: bool, file_name: &str) {
1002+
use std::fs::File;
1003+
use std::io::BufReader;
1004+
1005+
// Read the iris dataset
1006+
let file = File::open("assets/iris.csv").expect("Failed to open iris.csv");
1007+
let reader = BufReader::new(file);
1008+
let mut csv_reader = csv::Reader::from_reader(reader);
1009+
1010+
// Parse the data
1011+
let mut sepal_width = Vec::new();
1012+
let mut sepal_length = Vec::new();
1013+
let mut species = Vec::new();
1014+
1015+
for result in csv_reader.records() {
1016+
let record = result.expect("Failed to read CSV record");
1017+
sepal_width.push(record[1].parse::<f64>().unwrap());
1018+
sepal_length.push(record[0].parse::<f64>().unwrap());
1019+
species.push(record[4].to_string());
1020+
}
1021+
1022+
// Create separate traces for each species
1023+
let mut traces = Vec::new();
1024+
let unique_species: Vec<String> = species
1025+
.iter()
1026+
.cloned()
1027+
.collect::<std::collections::HashSet<_>>()
1028+
.into_iter()
1029+
.collect();
1030+
1031+
for (i, species_name) in unique_species.iter().enumerate() {
1032+
let mut x = Vec::new();
1033+
let mut y = Vec::new();
1034+
1035+
for (j, s) in species.iter().enumerate() {
1036+
if s == species_name {
1037+
x.push(sepal_width[j]);
1038+
y.push(sepal_length[j]);
1039+
}
1040+
}
1041+
1042+
let trace = Scatter::new(x, y)
1043+
.name(species_name)
1044+
.mode(plotly::common::Mode::Markers)
1045+
.x_axis(format!("x{}", i + 1))
1046+
.y_axis(format!("y{}", i + 1));
1047+
traces.push(trace);
1048+
}
1049+
1050+
let mut plot = Plot::new();
1051+
for trace in traces {
1052+
plot.add_trace(trace);
1053+
}
1054+
1055+
// Create layout with subplots
1056+
let mut layout = Layout::new()
1057+
.title("Iris Dataset - Subplots by Species")
1058+
.grid(
1059+
LayoutGrid::new()
1060+
.rows(1)
1061+
.columns(3)
1062+
.pattern(plotly::layout::GridPattern::Independent),
1063+
);
1064+
1065+
// Set x-axis range for all subplots: [None, 4.5]
1066+
layout = layout
1067+
.x_axis(
1068+
Axis::new()
1069+
.title("sepal_width")
1070+
// Can be set using a vec! of two optional values
1071+
.range(vec![None, Some(4.5)]),
1072+
)
1073+
.x_axis2(
1074+
Axis::new()
1075+
.title("sepal_width")
1076+
// Or can be set using AxisRange::upper(4.5)
1077+
.range(AxisRange::upper(4.5)),
1078+
)
1079+
.x_axis3(
1080+
Axis::new()
1081+
.title("sepal_width")
1082+
// Or can be set using AxisRange::upper(4.5)
1083+
.range(AxisRange::upper(4.5)),
1084+
);
1085+
1086+
// Set y-axis range for all subplots: [3, None]
1087+
layout = layout
1088+
.y_axis(
1089+
Axis::new()
1090+
.title("sepal_length")
1091+
.range(vec![Some(3.0), None]),
1092+
)
1093+
.y_axis2(
1094+
Axis::new()
1095+
.title("sepal_length")
1096+
.range(vec![Some(3.0), None]),
1097+
)
1098+
.y_axis3(
1099+
Axis::new()
1100+
.title("sepal_length")
1101+
.range(vec![Some(3.0), None]),
1102+
);
1103+
1104+
plot.set_layout(layout);
1105+
1106+
let path = write_example_to_html(&plot, file_name);
1107+
if show {
1108+
plot.show_html(path);
1109+
}
1110+
}
1111+
// ANCHOR_END: set_lower_or_upper_bound_on_axis
1112+
10001113
fn main() {
10011114
// Change false to true on any of these lines to display the example.
10021115

@@ -1013,7 +1126,6 @@ fn main() {
10131126
categories_scatter_chart(false, "categories_scatter_chart");
10141127

10151128
// Line Charts
1016-
10171129
adding_names_to_line_and_scatter_plot(false, "adding_names_to_line_and_scatter_plot");
10181130
line_and_scatter_styling(false, "line_and_scatter_styling");
10191131
styling_line_plot(false, "styling_line_plot");
@@ -1041,4 +1153,7 @@ fn main() {
10411153
pie_chart_text_control(false, "pie_chart_text_control");
10421154

10431155
grouped_donout_pie_charts(false, "grouped_donout_pie_charts");
1156+
1157+
// Set Lower or Upper Bound on Axis
1158+
set_lower_or_upper_bound_on_axis(false, "set_lower_or_upper_bound_on_axis");
10441159
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.