Maxim Zhiburt
Maxim Zhiburt
> It just has the columns and rows swapped I tend to believe it's because `HashMap` is used. And it implies a different ordering. But I think it would be...
close #72
Hi @anenankhu Thank you for addressing it and opening the issue. Essentially you're trying to disable a last border? Or a horizontal line between the last and a previous row?...
So if you ask how to remove a custom horizontal split line, I think it's quite not possible see #137. What's is necessary to do to achieve this affect is...
Ohhh @anenankhu so then it's a relief :) See it. ```rust use tabled::{object::Rows, style::Border, Highlight, Style, TableIteratorExt}; fn main() { let data = [ ("Sublime Text 3", "2008", "Sublime HQ"),...
Hi @anenankhu can I close it? And a note about it. It can be done easier these days. ```rust let table = data.table() .with(Style::blank().lines([(data.len() - 1, Line::empty().horizontal('-'))])); ```
It's related to ref: #126
It turned out that actually it's not that useful. It's better to target a cells.
Note: It will work as long as we are provided with exact size of each cell.
It's actually will work in any case. We could add a Width option to `Formatting` then use this value if set in calculation of width and in printing. In case...