Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
3e83fc6
ENH: Styler can add tooltips directly from a DataFrame of strings
attack68 Aug 9, 2020
f8ffbbe
ENH: black fix
attack68 Aug 9, 2020
b92d255
ENH: test to ensure tooltip class ignored if set_tooltips not called.
attack68 Aug 9, 2020
cd6c5f2
ENH: pep8 line length
attack68 Aug 9, 2020
1f61e87
ENH: pep8 line length
attack68 Aug 9, 2020
af83833
ENH: test fixes: Linting and Typing
attack68 Aug 9, 2020
078c0bb
ENH: add in calling the render step!
attack68 Aug 9, 2020
eeddd19
ENH: mypy Type specification changes
attack68 Aug 9, 2020
6389811
improve tests, integrate into styler.clear()
attack68 Aug 18, 2020
e7557f5
add GH
attack68 Aug 18, 2020
64f789a
black fix
attack68 Aug 18, 2020
0b1e930
update docs
attack68 Aug 18, 2020
5ca86a5
update docs
attack68 Aug 18, 2020
f798852
improve test
attack68 Aug 20, 2020
1e782b7
whats new, typing, and list comps
attack68 Sep 6, 2020
ee952de
Merge remote-tracking branch 'upstream/master' into styler_tooltips_f…
attack68 Sep 6, 2020
71c3cc1
Merge remote-tracking branch 'upstream/master' into styler_tooltips_f…
attack68 Sep 9, 2020
2c36d4b
reindex instead of same shape. add test cases.
attack68 Sep 9, 2020
4aed112
black fix
attack68 Sep 9, 2020
49ecb50
Merge remote-tracking branch 'upstream/master' into styler_tooltips_f…
attack68 Sep 13, 2020
3510ada
revert uuid
attack68 Sep 13, 2020
7f76e8e
revert docs on uuid
attack68 Sep 13, 2020
aa09003
tooltip in individual class architecture
attack68 Sep 14, 2020
f160297
Merge remote-tracking branch 'upstream/master' into styler_tooltips_f…
attack68 Sep 14, 2020
776c434
Merge remote-tracking branch 'upstream/master' into styler_tooltips_f…
attack68 Sep 17, 2020
c3c0aba
Merge remote-tracking branch 'upstream/master' into styler_tooltips_f…
attack68 Sep 19, 2020
dd69ae6
Merge remote-tracking branch 'upstream/master' into styler_tooltips_f…
attack68 Sep 20, 2020
4055e1b
fix test after recent merge master
attack68 Sep 20, 2020
6b27ec2
Merge remote-tracking branch 'upstream/master' into styler_tooltips_f…
attack68 Sep 21, 2020
8fc8437
revert style.ipynb
attack68 Sep 22, 2020
a96acf8
annotate
attack68 Sep 22, 2020
50c2aa9
improve docs example
attack68 Sep 22, 2020
607cfe6
black pandas
attack68 Sep 22, 2020
ab079b0
Update pandas/io/formats/style.py
attack68 Sep 23, 2020
f6e066e
sequence type change
attack68 Sep 23, 2020
af6401a
doc notes for users
attack68 Sep 23, 2020
0e6b1a3
avoid var name clash
attack68 Sep 23, 2020
5829546
enumerate to range
attack68 Sep 25, 2020
eaa851e
Merge remote-tracking branch 'upstream/master' into styler_tooltips_f…
attack68 Sep 25, 2020
9e8612f
Merge remote-tracking branch 'upstream/master' into styler_tooltips_f…
attack68 Sep 28, 2020
5507c4f
pre commit errors
attack68 Sep 28, 2020
d0eefca
Merge remote-tracking branch 'upstream/master' into styler_tooltips_f…
attack68 Sep 29, 2020
c0b004e
merged into upstream/master
attack68 Jan 5, 2021
e4a5e20
requested changes jreback
attack68 Jan 5, 2021
849b1f4
requested changes jreback
attack68 Jan 5, 2021
950b3b1
requested changes jreback
attack68 Jan 5, 2021
efc7fca
pre commit fails fix
attack68 Jan 5, 2021
eb7fe68
minor requests
attack68 Jan 13, 2021
5a377b8
resolve duplicate typing
attack68 Jan 16, 2021
54c52da
Merge remote-tracking branch 'upstream/master' into styler_tooltips_f…
attack68 Jan 16, 2021
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
requested changes jreback
  • Loading branch information
attack68 committed Jan 5, 2021
commit 849b1f4307e583842cc5dca8b94f42a6f49424e9
2 changes: 2 additions & 0 deletions doc/source/reference/style.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ Style application
Styler.set_td_classes
Styler.set_table_styles
Styler.set_table_attributes
Styler.set_tooltips
Styler.set_tooltips_class
Styler.set_caption
Styler.set_properties
Styler.set_uuid
Expand Down
4 changes: 4 additions & 0 deletions pandas/io/formats/style.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,8 @@ def set_tooltips(self, ttips: DataFrame) -> "Styler":
Add string based tooltips that will appear in the `Styler` HTML result. These
tooltips are applicable only to`<td>` elements.

.. versionadded:: 1.3.0

Parameters
----------
ttips : DataFrame
Expand Down Expand Up @@ -268,6 +270,8 @@ def set_tooltips_class(
Manually configure the name and/or properties of the class for
creating tooltips on hover.

.. versionadded:: 1.3.0

Parameters
----------
name : str, default None
Expand Down