Downloadable data charts provide an export action for SQL query results.
When to use downloads
Use downloadable data charts when viewers need to work with dashboard data outside Tractorscope:
- Customer exports
- Reconciliation reports
- Audit lists
- Operational queues
- Filtered detail records
SQL shape
Return the rows and columns that should be available in the export:
select
order_id,
customer_name,
total,
status,
created_at
from orders
where created_at >= current_date - interval 30 dayselect
order_id,
customer_name,
total,
status,
created_at
from orders
where created_at >= current_date - interval 30 daySecurity tips
- Only include columns users are allowed to download.
- Use filters to scope exports by customer, account, or date.
- Review embed settings before allowing downloads in customer-facing dashboards.