I have a UI dataSource that needs to have the start/end dates to be set very specifically on certain dates:
If the current date is before July 1st, the start should be June 30th of the current year and end should be July 1st of the current year.
If the current date is >= July first, the start should be June 30 of next year, with the end still being one day later.
Is this possible using createDynamicDate
inside of a dataSource? I haven’t seen any examples that seem to do something similar, and I don’t know where to find documentation for that method.