Skip to content
Discussion options

You must be logged in to vote

Hi @koyuul

Bar charts exclude 'time' (domain hints) metadata specifically from the x and y axis values. Their intention is to only plot range values.
Once way you could accomplish plotting packets over a range of days is by adding metadata values like:

{
        key: 'days',
        name: 'Days',
        unit: 'day',
        format: 'integer[]', //(or string[])
        hints: {
          range: 3
        }
 },
{
        key: 'packets',
        name: 'Days',
        unit: 'day',
        format: 'integer[]', //(or string[])
        hints: {
          range: 4
        }
 }

Then your telemetry would need to return data in arrays like:

days: [1743619821, 1743706221, 1743792621]
packets: [30, …

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by akhenry
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants