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"
}