@@ -940,6 +940,12 @@ def set_tick_params(self, which='major', reset=False, **kwargs):
940940
941941 For documentation of keyword arguments, see
942942 :meth:`matplotlib.axes.Axes.tick_params`.
943+
944+ See Also
945+ --------
946+ :meth:`.Axis.get_tick_params`
947+ View the current style defaults for ticks, ticklabels, and
948+ gridlines.
943949 """
944950 _api .check_in_list (['major' , 'minor' , 'both' ], which = which )
945951 kwtrans = self ._translate_tick_params (kwargs )
@@ -977,8 +983,18 @@ def get_tick_params(self, which='major'):
977983 """
978984 Get appearance parameters for ticks, ticklabels, and gridlines.
979985
980- For documentation of keyword arguments, see
981- :meth:`matplotlib.axes.Axes.get_tick_params`.
986+ Parameters
987+ ----------
988+ which : {'major', 'minor'}, default: 'major'
989+ The group of ticks to which the parameters are applied.
990+
991+ Notes
992+ -----
993+ This method returns the default values for styling *new* elements
994+ added to this axis and may be different from the values on current
995+ elements, if they were modified directly by the user (e.g., via
996+ ``set_*`` methods on individual tick objects).
997+
982998 """
983999 _api .check_in_list (['major' , 'minor' ], which = which )
9841000 if which == 'major' :
0 commit comments