Describe the feature
The set_axislabel method on a WCSAxes axis allows for passing in not just the label of the axis but also additional arguments such as the color of that label. However, the coord_params interface to set_axislabel only allows for passing the label and no other arguments
|
coord.set_axislabel(axislabel) |
Proposed solution
Allow the axislabel entry in the coord_params dict to optionally be a dict and unpack it if it is. In this case, one of the entries of that dict would also have to be the axislabel.
Describe the feature
The
set_axislabelmethod on a WCSAxes axis allows for passing in not just the label of the axis but also additional arguments such as the color of that label. However, thecoord_paramsinterface toset_axislabelonly allows for passing the label and no other argumentsmpl-animators/mpl_animators/wcs.py
Line 182 in 32739c0
Proposed solution
Allow the
axislabelentry in thecoord_paramsdict to optionally be a dict and unpack it if it is. In this case, one of the entries of that dict would also have to be the axislabel.