Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add API to set dimension of Page #8

Merged
merged 2 commits into from
Jul 21, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ Cargo.lock
*.bk
.vscode
.idea
/*.svg
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
language: rust
rust:
- stable
- nightly

matrix:
allow_failures:
- rust: nightly
fast_finish: true

cache: cargo

script:
- cargo build --verbose
- cargo test --verbose
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ keywords = ["plotting", "plot", "graph", "chart", "histogram", "scatter"]
travis-ci = { repository = "milliams/plotlib" }

[dependencies]
svg = "0.5.10"
svg = "0.5.11"
5 changes: 3 additions & 2 deletions examples/boxplot_svg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ fn main() {
let v = plotlib::view::DiscreteView::new()
.add(&b1)
.add(&b2)
.x_label("Experiment");
plotlib::page::Page::single(&v).save("boxplot.svg");
.x_label("Experiment")
.y_label("y");
plotlib::page::Page::single(&v).dimensions(400, 300).save("boxplot.svg");
}
28 changes: 25 additions & 3 deletions src/page.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ A single page page laying out the views in a grid
pub struct Page<'a> {
views: Vec<&'a View>,
num_views: u32,
dimensions: (u32, u32)
}

impl<'a> Page<'a> {
Expand All @@ -27,18 +28,39 @@ impl<'a> Page<'a> {
Page {
views: vec![view],
num_views: 1,
dimensions: (600, 400)
}
}

/// Set the dimensions of the plot.
pub fn dimensions(mut self, x: u32, y: u32) -> Self {
self.dimensions = (x,y);
self
}

/// Add a view to the plot
pub fn add_plot(mut self, view: &'a View) -> Self {
self.views.push(view);
self.num_views += 1;
self
}

/**
Render the plot to an svg document
*/
pub fn to_svg(&self) -> svg::Document {
let mut document = Document::new().set("viewBox", (0, 0, 600, 400));
let (width, height) = self.dimensions;
let mut document = Document::new().set("viewBox", (0, 0, width, height));

let x_margin = 80;
let y_margin = 60;
let x_offset = 0.6*x_margin as f64;
let y_offset = 0.6*y_margin as f64;

// TODO put multiple views in correct places
for &view in &self.views {
let view_group = view.to_svg(500., 340.)
.set("transform", format!("translate({}, {})", 50, 360));
let view_group = view.to_svg((width-x_margin) as f64, (height-y_margin) as f64)
.set("transform", format!("translate({}, {})", x_offset, height as f64-y_offset));
document.append(view_group);
}
document
Expand Down