File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -200,9 +200,9 @@ export class AlternativeVisualizersWrapper
200200 * @see setState
201201 */
202202 public resetState ( ) : void {
203- super . resetState ( ) ;
204- this . visualizers . forEach ( visualizer => visualizer . resetState ( ) ) ;
205- this . setVisualizer ( this . visualizers [ 0 ] . type , true ) ;
203+ super . resetState ( ) ;
204+ this . visualizers . forEach ( visualizer => visualizer . resetState ( ) ) ;
205+ this . setVisualizer ( this . visualizers [ 0 ] . type , true ) ;
206206 }
207207
208208 getValues ( ) : Array < any > {
Original file line number Diff line number Diff line change @@ -19,21 +19,21 @@ export interface ITableOptions {
1919
2020 /**
2121 * Specifies whether to use question names instead of question titles as column headings.
22- *
22+ *
2323 * Default value: `false`
2424 */
2525 useNamesAsTitles ?: boolean ;
2626 /**
2727 * Specifies the delimiter used to separate multiple choice items in a list.
28- *
28+ *
2929 * Default value: `", "`
3030 */
3131 itemsDelimiter ?: string ;
3232 /**
3333 * A callback function that allows you to customize a question's display value in the table.
34- *
34+ *
3535 * Parameters:
36- *
36+ *
3737 * - `options.question`: `Question`\
3838 * The question for which the callback is executed.
3939 * - `options.displayValue`: `any`\
@@ -361,9 +361,9 @@ export abstract class Table {
361361 */
362362 public resetState ( ) {
363363 this . _columns . forEach ( ( column : IColumn , index : number ) => {
364- column . fromJSON ( { } ) ;
365- column . visibleIndex = index ;
366- }
364+ column . fromJSON ( { } ) ;
365+ column . visibleIndex = index ;
366+ }
367367 ) ;
368368 this . locale = surveyLocalization . defaultLocale ;
369369 this . currentPageSize = 5 ;
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ export class VisualizationManager {
7878 */
7979 public static getVisualizersByType (
8080 visualizerType : string ,
81- fallbackVisualizerType ?: string
81+ fallbackVisualizerType ?: string
8282 ) : VisualizerConstructor [ ] {
8383 let vDescrs = VisualizationManager . vizualizers [ visualizerType ] ;
8484 if ( ! ! fallbackVisualizerType && ( ! vDescrs || vDescrs . length == 0 ) ) {
You can’t perform that action at this time.
0 commit comments