@@ -1117,9 +1117,9 @@ def get_cursor_data(self, event):
1117
1117
Return the cursor data for a given event.
1118
1118
1119
1119
.. note::
1120
- This method is intended to be overridden by artist subclasses
1121
- (or monkeypatched). As an end-user of Matplotlib you will most
1122
- likely not call this method yourself.
1120
+ This method is intended to be overridden by artist subclasses.
1121
+ As an end-user of Matplotlib you will most likely not call this
1122
+ method yourself.
1123
1123
1124
1124
Cursor data can be used by Artists to provide additional context
1125
1125
information for a given event. The default implementation just returns
@@ -1132,6 +1132,10 @@ def get_cursor_data(self, event):
1132
1132
The only current use case is displaying the z-value of an `.AxesImage`
1133
1133
in the status bar of a plot window, while moving the mouse.
1134
1134
1135
+ Parameters
1136
+ ----------
1137
+ event : `matplotlib.backend_bases.MouseEvent`
1138
+
1135
1139
See Also
1136
1140
--------
1137
1141
format_cursor_data
@@ -1144,9 +1148,9 @@ def format_cursor_data(self, data):
1144
1148
Return a string representation of *data*.
1145
1149
1146
1150
.. note::
1147
- This method is intended to be overridden by artist subclasses
1148
- (or monkeypatched). As an end-user of Matplotlib you will most
1149
- likely not call this method yourself.
1151
+ This method is intended to be overridden by artist subclasses.
1152
+ As an end-user of Matplotlib you will most likely not call this
1153
+ method yourself.
1150
1154
1151
1155
The default implementation converts ints and floats and arrays of ints
1152
1156
and floats into a comma-separated string enclosed in square brackets.
0 commit comments