The VisualizationManager.registerVisualizer method now supports a third parameter—index—that specifies the position of the visualizer you register in the visualizer list for the specified question type. Pass 0 as the index parameter to insert the visualizer at the beginning of the list and use it by default.
// Register a custom visualizer for Dropdown questions and use it by default
VisualizationManager.registerVisualizer("dropdown", CustomVisualizer, 0);
IMPLEMENTED
The
VisualizationManager.registerVisualizer
method now supports a third parameter—index
—that specifies the position of the visualizer you register in the visualizer list for the specified question type. Pass0
as theindex
parameter to insert the visualizer at the beginning of the list and use it by default.Documentation