Setting misc: false in Custom Chart on Canvas Dashboard

i’m putting custom charts on a canvas dashboard. When I save it, I almost always gets appended with a line like

setting misc: false

When this happens and the user loads the published dashboard, the widget returns an “Internal Server Error” in it’s place.

Canvas AML

  block v5: VizBlock {
    label: 'Stacks in Active Hours - Time Period'
    viz: CustomChart {
      dataset: stack_examiner_timing
      custom_chart_id: 1099511642813
      field x: VizFieldFull {
        ref: ref('stack_assignment_timing', 'completed_hour')
        format {
          type: 'number'
          pattern: 'inherited'
        }
      }
      field row: VizFieldFull {
        ref: ref('stack_assignment_timing', 'examiner_name')
        format {
          type: 'text'
        }
      }
      field measure: VizFieldFull {
        ref: ref('stack_assignment_timing', 'stacks')
        format {
          type: 'number'
          pattern: 'inherited'
        }
      }
      setting row_sort: 'ascending'
      setting row_space: 25
      setting row_width: 400
      setting fill_color: '#aaa'
      setting row_height: 55
      setting show_y_axis_label: true
      setting misc: false
    }
  }

Hi @Matt_Stone,

This is indeed a bug from our end. We are actively working on a patch to resolve it

In the meantime, you can resolve the issue by manually removing the setting misc: false.

We really appreciate your patience and understanding.

Cheers :love_you_gesture: