Our documentation now lives on the Atlassian Support site at https://support.atlassian.com/analytics/resources/.
Set up a "Range input" control
“Range input” controls let you filter your data based on a selected numeric range. Setting up a “Range input” control requires two main steps:
Create the “Range input” control for your dashboard
Connect the “Range input” control to a chart
Create a “Range input” control
To add a “Range input” control to your dashboard:
Open the dashboard where you want to add the “Range input” control.
Select Add control > Range input from the dashboard sidebar. A pop-up will appear for you to select the control’s settings.
Edit the control’s settings as needed. (See next section to learn more about “Range input” settings)
Select Add.
Place the newly created “Range input” control anywhere on your dashboard.
“Range input” control settings
You can edit the following settings for your “Range input”:
Name
The control’s name
Min
The minimum value for the control’s range
Max
The maximum value for the control’s range
Precision
Enforces increments when selecting values in the range
Default values
Set default values to select when you load the dashboard
Connect a “Range input” control to a chart
After you’re created your “Range input” 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.
You can also connect controls in other Visual SQL steps. Learn more about connecting controls outside of a Visual SQL query.
In a visual mode query
To connect a “Range input” 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 numeric column you want the control to filter.
Select between and including as the filter operator.
Reference your control using its variable:
Use
{RANGE_INPUT_NAME.START}
for the beginning of the range.Use
{RANGE_INPUT_NAME.END}
for the end of the range.Replace
RANGE_INPUT_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 “Range input” control in your SQL query by referencing the control using its variable:
Use
{RANGE_INPUT_NAME.START}
for the beginning of the range.Use
{RANGE_INPUT_NAME.END}
for the end of the range.
Replace RANGE_INPUT_NAME
with your control's name.
Here’s an example of how someone might get a list of Jira issue IDs where the total amount of logged work is between the selected values of a “Range input” control:
SELECT "Jira Issue"."issue_id" AS "Issue Id"
FROM "jira _issue" AS "Jira Issue"
WHERE "Jira Issue"."time_spent_secs" BETWEEN {RANGE_INPUT_NAME.START} AND {RANGE_INPUT_NAME.END};