Our documentation now lives on the Atlassian Support site at https://support.atlassian.com/analytics/resources/.
Set up a "Calendar" control
“Calendar” controls let you filter your charts on a single date or a date range. Setting up a “Calendar” control requires two main steps:
Create the “Calendar” control for your dashboard
Connect the “Calendar” control to a chart
Create a “Calendar” control
To add a “Calendar” control to your dashboard:
Open the dashboard where you want to add the “Calendar” control.
Select Add control > Calendar from the dashboard sidebar. A pop-up will appear for you to select the control’s settings.
Optionally, change the Name of the control.
For Data type, select whether you want to filter your charts on a single date or date range.
Edit the Default start and end dates using fixed dates, or use a combination of relative date variables and date and time functions for dynamic filtering.
Optionally, select a Background color for your control.
Select Add.
Place the newly created “Calendar” control anywhere on your dashboard.
Connect a “Calendar” control to a chart
After you’ve created your “Calendar” control, you’ll need to connect it to a chart in order to start using it to filter. You can do this by using its corresponding dashboard variable in a Visual SQL query.
In a visual mode query
To connect a “Calendar” control to a chart using a visual mode query:
Open the chart editor by creating a new chart or editing an existing chart on the dashboard.
In the “Filters” section of your visual mode query:
Add the date column you want the control to filter.
Select the filter operator. Most people use between and including.
Reference your control using its variable:
If the “Data type” of your control is “Date”, use
{CALENDAR_NAME}
If the “Data type” of your control is “Date range”, use
{CALENDAR_NAME.START}
and{CALENDAR_NAME.END}
for the start and end dates, respectively.Replace
CALENDAR_NAME
with your control's name.
Select Run query. The result table will update with the new filter applied to the data.
Select Save to dashboard to save the chart.
In a SQL mode query
You can connect a “Calendar” control in your SQL query by referencing the control using its variable:
If the “Data type” of your “Calendar” control is “Date”, use
{CALENDAR_NAME}
.If the “Data type” of your control is “Date range”, use
{CALENDAR_NAME.START}
and{CALENDAR_NAME.END}
for the start and end dates, respectively.
Replace CALENDAR_NAME
with your control's name.
Here’s an example of how someone might get the total number of Jira issues created between the selected dates of a “Calendar” control:
SELECT COUNT(DISTINCT "Jira Issue"."issue_id") AS "Count of distinct Issue Id"
FROM "jira _issue" AS "Jira Issue"
WHERE "Jira Issue"."created_at" BETWEEN {CALENDAR_NAME.START} AND {CALENDAR_NAME.END};