@@ -1015,14 +1015,20 @@ def __init__(self, ax, labels, actives=None, *, useblit=True,
1015
1015
See the tutorial :doc:`/tutorials/advanced/blitting` for details.
1016
1016
label_props : dict, optional
1017
1017
Dictionary of `.Text` properties to be used for the labels.
1018
+
1019
+ .. versionadded:: 3.7
1018
1020
frame_props : dict, optional
1019
1021
Dictionary of scatter `.Collection` properties to be used for the
1020
1022
check button frame. Defaults to 's' marker, (label font size /
1021
1023
2)**2 size, black edgecolor, no facecolor, and 1.0 linewidth.
1024
+
1025
+ .. versionadded:: 3.7
1022
1026
check_props : dict, optional
1023
1027
Dictionary of scatter `.Collection` properties to be used for the
1024
1028
check button check. Defaults to 'x' marker, (label font size /
1025
1029
2)**2 size, black color, and 1.0 linewidth.
1030
+
1031
+ .. versionadded:: 3.7
1026
1032
"""
1027
1033
super ().__init__ (ax )
1028
1034
@@ -1114,6 +1120,8 @@ def set_label_props(self, props):
1114
1120
"""
1115
1121
Set properties of the `.Text` labels.
1116
1122
1123
+ .. versionadded:: 3.7
1124
+
1117
1125
Parameters
1118
1126
----------
1119
1127
props : dict
@@ -1128,6 +1136,8 @@ def set_frame_props(self, props):
1128
1136
"""
1129
1137
Set properties of the check button frames.
1130
1138
1139
+ .. versionadded:: 3.7
1140
+
1131
1141
Parameters
1132
1142
----------
1133
1143
props : dict
@@ -1143,6 +1153,8 @@ def set_check_props(self, props):
1143
1153
"""
1144
1154
Set properties of the check button checks.
1145
1155
1156
+ .. versionadded:: 3.7
1157
+
1146
1158
Parameters
1147
1159
----------
1148
1160
props : dict
@@ -1617,6 +1629,8 @@ def __init__(self, ax, labels, active=0, activecolor=None, *,
1617
1629
See the tutorial :doc:`/tutorials/advanced/blitting` for details.
1618
1630
label_props : dict or list of dict, optional
1619
1631
Dictionary of `.Text` properties to be used for the labels.
1632
+
1633
+ .. versionadded:: 3.7
1620
1634
radio_props : dict, optional
1621
1635
Dictionary of scatter `.Collection` properties to be used for the
1622
1636
radio buttons. Defaults to 'o' marker, (label font size / 2)**2
@@ -1626,6 +1640,8 @@ def __init__(self, ax, labels, active=0, activecolor=None, *,
1626
1640
If a facecolor is supplied in *radio_props*, it will override
1627
1641
*activecolor*. This may be used to provide an active color per
1628
1642
button.
1643
+
1644
+ .. versionadded:: 3.7
1629
1645
"""
1630
1646
super ().__init__ (ax )
1631
1647
@@ -1726,6 +1742,8 @@ def set_label_props(self, props):
1726
1742
"""
1727
1743
Set properties of the `.Text` labels.
1728
1744
1745
+ .. versionadded:: 3.7
1746
+
1729
1747
Parameters
1730
1748
----------
1731
1749
props : dict
@@ -1740,6 +1758,8 @@ def set_radio_props(self, props):
1740
1758
"""
1741
1759
Set properties of the `.Text` labels.
1742
1760
1761
+ .. versionadded:: 3.7
1762
+
1743
1763
Parameters
1744
1764
----------
1745
1765
props : dict
0 commit comments