Skip to content

BUG: styler multiindex hiding indexes and columns alignment #43649

New issue

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

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

Already on GitHub? Sign in to your account

Merged
merged 58 commits into from
Oct 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
9743099
ignore hidden rows in loop
attack68 Sep 18, 2021
8a0253e
add latex 43644 test
attack68 Sep 18, 2021
74c418e
add latex 43644 test
attack68 Sep 18, 2021
70535c5
Merge remote-tracking branch 'upstream/master' into bug_styler_multii…
attack68 Sep 21, 2021
2fbe569
clean up code
attack68 Sep 21, 2021
7903723
clean up code
attack68 Sep 21, 2021
6a2793c
row, col and level css
attack68 Sep 21, 2021
d227914
whats new
attack68 Sep 21, 2021
7ca5002
tests and user guide
attack68 Sep 21, 2021
f27f7ed
merge
attack68 Sep 22, 2021
a1000a7
merge
attack68 Sep 22, 2021
c44dcda
move private methods
attack68 Sep 22, 2021
c4c9aaa
Merge branch 'clean_styler_css_classes' into bug_styler_multiindex_hi…
attack68 Sep 22, 2021
c22cf0d
refactor methods
attack68 Sep 22, 2021
0e0b46e
add test for 43703
attack68 Sep 22, 2021
1f3bbec
add test for 43703
attack68 Sep 22, 2021
021bc26
docs
attack68 Sep 22, 2021
4ba3dff
docs
attack68 Sep 22, 2021
7fee05d
more explicit test
attack68 Sep 22, 2021
baa3233
more explicit test
attack68 Sep 22, 2021
f4ad390
fix checks
attack68 Sep 23, 2021
22b03e3
fix checks
attack68 Sep 23, 2021
db214d8
fix checks
attack68 Sep 23, 2021
771d056
Merge remote-tracking branch 'upstream/master' into bug_styler_multii…
attack68 Sep 24, 2021
24952ae
fix checks
attack68 Sep 24, 2021
1d47d0f
Merge remote-tracking branch 'upstream/master' into clean_styler_css_…
attack68 Sep 24, 2021
566738d
fix checks
attack68 Sep 24, 2021
230138a
fix checks
attack68 Sep 24, 2021
b9ba9ea
refactor to get tests to pass
attack68 Sep 25, 2021
ea2bba1
refactor to get tests to pass
attack68 Sep 25, 2021
75de033
Merge branch 'clean_styler_css_classes' into bug_styler_multiindex_hi…
attack68 Sep 25, 2021
4c34bc2
try filter
attack68 Sep 25, 2021
68ee832
docs methods
attack68 Sep 25, 2021
ca70491
correct css classes in set_table_styles
attack68 Sep 25, 2021
7a1994e
Merge remote-tracking branch 'upstream/master' into clean_styler_css_…
attack68 Sep 29, 2021
91320f8
add version added
attack68 Sep 29, 2021
92c1941
add version added
attack68 Sep 29, 2021
aad0e16
checks fix
attack68 Sep 29, 2021
61b24ed
add tests allow none
attack68 Sep 29, 2021
d4c5715
fix checks
attack68 Sep 29, 2021
aa0172f
Merge remote-tracking branch 'upstream/master' into clean_styler_css_…
attack68 Oct 2, 2021
84a814f
rename `css` `css_class_names`
attack68 Oct 2, 2021
f06b727
rename `css` `css_class_names`
attack68 Oct 2, 2021
131070f
rename `css` `css_class_names`
attack68 Oct 2, 2021
a048122
update arg name
attack68 Oct 2, 2021
4931f32
Merge remote-tracking branch 'upstream/master' into clean_styler_css_…
attack68 Oct 3, 2021
e9716f2
fix line length
attack68 Oct 3, 2021
d983464
black
attack68 Oct 3, 2021
0f11a62
Merge branch 'clean_styler_css_classes' into bug_styler_multiindex_hi…
attack68 Oct 5, 2021
16946b0
Merge remote-tracking branch 'upstream/master' into clean_styler_css_…
attack68 Oct 9, 2021
451d6d5
Merge branch 'clean_styler_css_classes' into bug_styler_multiindex_hi…
attack68 Oct 9, 2021
6e71e8c
Merge remote-tracking branch 'upstream/master' into clean_styler_css_…
attack68 Oct 11, 2021
fd76da9
Merge branch 'clean_styler_css_classes' into bug_styler_multiindex_hi…
attack68 Oct 11, 2021
042148c
Merge remote-tracking branch 'upstream/master' into bug_styler_multii…
attack68 Oct 16, 2021
66fc164
Merge remote-tracking branch 'upstream/master' into bug_styler_multii…
attack68 Oct 16, 2021
e8b24f0
fix merge
attack68 Oct 16, 2021
b1ba432
Merge remote-tracking branch 'upstream/master' into bug_styler_multii…
attack68 Oct 17, 2021
d54779b
Merge remote-tracking branch 'upstream/master' into bug_styler_multii…
attack68 Oct 18, 2021
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 doc/source/whatsnew/v1.4.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ Styler
- Naive sparsification is now possible for LaTeX without the multirow package (:issue:`43369`)
- :meth:`Styler.to_html` omits CSSStyle rules for hidden table elements (:issue:`43619`)
- Custom CSS classes can now be directly specified without string replacement (:issue:`43686`)
- Bug where row trimming failed to reflect hidden rows (:issue:`43703`)

Formerly Styler relied on ``display.html.use_mathjax``, which has now been replaced by ``styler.html.mathjax``.

Expand Down
Loading