reportScheduleOptions

reportScheduleOptions

This property allows you to control the available frequency options for scheduled reports. For example, you can set the following to allow your users to pick between receiving the report at 9 am every Monday, or at 5 pm every Friday.

<Vizzly.Dashboard
  // ... the other props
  reportScheduleOptions={[
    { cron: "0 9 * * 1", description: "9 am every Monday" },
    { cron: "0 17 * * 5", description: "5 pm every Friday" }
  ]}
/>

For this property to work, your parent dashboard will need to have a webhook attached.