How to set default date format?

I have the following dimension group for dates. Currently, the default dates that appear on charts are 2021-07-06 (for date) and 2021-07 (for month)

Is there a way to change the default dates to without setting a custom format for each individual charts? For example, ‘date’ can be Jul 6, 2021 and ‘month’ can be Jul 2021

  dimension_group: created_date {
    group_label: "Dates"
    type: time
    timeframes: [
      raw,
      time,
      date,
      week,
      month,
      quarter,
      year
    ]
    sql: ${TABLE}."created_date" ;;
  }