def __get_drop_down_value_dict__(self) -> dict:
     return {
         DDT.CHART_TYPE:
         CHT.get_chart_types_for_pattern_statistics(),
         DDT.PREDICTOR:
         PRED.get_for_pattern_all(),
         DDT.CATEGORY:
         PatternTable.get_columns_for_statistics_category(),
         DDT.X_VARIABLE:
         PatternTable.get_columns_for_statistics_x_variable(),
         DDT.Y_VARIABLE:
         PatternTable.get_columns_for_statistics_y_variable(),
         DDT.CHART_TEXT_VARIABLE:
         PatternTable.get_columns_for_statistics_text_variable(),
         DDT.PATTERN_TYPE:
         FT.get_all_for_statistics()
     }
 def __get_drop_down_value_dict__(self) -> dict:
     return {
         DDT.CHART_TYPE:
         CHT.get_chart_types_for_models_statistics(),
         DDT.CATEGORY:
         STBL.get_for_model_statistics(),
         DDT.PREDICTOR:
         PRED.get_for_pattern_all(),
         DDT.X_VARIABLE:
         PatternTable.get_label_columns_touch_points_for_statistics(),
         DDT.Y_VARIABLE:
         MTC.get_all_for_statistics(),
         DDT.CHART_TEXT_VARIABLE:
         PatternTable.get_columns_for_statistics_text_variable(),
         DDT.MODEL_TYPE:
         MT.get_all_for_statistics(),
         DDT.PATTERN_TYPE:
         FT.get_all_for_statistics()
     }