General
Guides
Development
API
Charts
- Bar Chart
- Bar Chart (Discrete)
- Donut Chart
- Scatter Plot
- Simple Time Series
- Singlegraph
- Singlegraph Grid
- Standard Time Series
Text
- Comparison Jumbotron Singlestat
- Comparison Singlestat
- Comparison Summation Table
- Heading
- Jumbotron Singlestat
- Markdown
- Percentage Table
- Singlestat
- Summation Table
- Timer Stat
- Time-Shifted Jumbotron Singlestat
- Time-Shifted Singlestat
- Time-Shifted Summation Table
Layout
Standard Time Series
The standard_time_series
dashboard item renders full-featured line
and area charts, with multiple options for formatting, stacking, and
legends.
Attributes
Attribute | Default Value | |
---|---|---|
title | ||
query | ||
legend | simple |
simple or table or none |
stack_mode | none |
stacked or stream or percent or none |
Series Rendering Options
Lines Only
{
"show_lines": true,
"show_points": false
}
Points Only
{
"show_lines": false,
"show_points": true
}
Lines and Points
{
"show_lines": true,
"show_points": true
}
Legend Options
None
{
"legend": "none"
}
Simple
{
"legend": "simple"
}
Table
{
"legend": "table"
}
Stacking Options
None
{
"stack_mode": "none"
}
Stacked
{
"stack_mode": "stack"
}
Stream
{
"stack_mode": "stream"
}
Percent
{
"stack_mode": "percent"
}