We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a2625c commit 0e6bbfbCopy full SHA for 0e6bbfb
components/pango_plot/include/pangolin/plot/plotter.h
@@ -192,9 +192,15 @@ class PANGOLIN_EXPORT Plotter : public View, Handler
192
void ClearImplicitPlots();
193
void AddImplicitPlot();
194
195
- /// Reset colour wheel to initial state. May be useful together with ClearSeries() / ClearMarkers()
+ /// Reset colour provider to initial state. May be useful together with ClearSeries() / ClearMarkers()
196
void ResetColourProvider();
197
198
+ /// Alias for ResetColourProvider for API compatibility.
199
+ void ResetColourWheel()
200
+ {
201
+ ResetColourProvider();
202
+ }
203
+
204
void ShowHoverLines(bool show)
205
{
206
showHoverLines = show;
0 commit comments