Proposal: Adjusting Chart Color Display Order #2562
Replies: 2 comments 7 replies
-
|
Thanks for opening a discussion first! Charts and the metrics dashboard I'm planning on completely overhauling come Q1 2026 so I wouldn't open a PR. Colors are better visual representations are on my list. |
Beta Was this translation helpful? Give feedback.
-
Question About Timestamp FormatWhat are your thoughts on the timestamp format? Currently, the application uses the 12-hour format (AM/PM). Would you be open to switching to the 24-hour format? From my perspective, the 24-hour format is easier to read and less ambiguous. This may partly be because I’m not a native English speaker; in many parts of Europe, including the Netherlands, the 24-hour format is the standard, so it feels more natural and intuitive. File: Current: 12-hour format (AM/PM)$labelFormat = match ($this->dateRange) {
'today' => 'g:i A', // 3:45 PM
'week' => 'D g:i A', // Mon 3:45 PM
'month' => 'M j g:i A', // Dec 15 3:45 PM
default => 'M j g:i A', // Dec 15 3:45 PM
};Proposed: 24-hour format$labelFormat = match ($this->dateRange) {
'today' => 'H:i', // 15:45
'week' => 'D H:i', // Mon 15:45
'month' => 'M jS, H:i' // Dec 15th 15:45
default => 'M jS, Y, H:i', // Dec 15th, 2025, 15:45
};I believe this change would improve clarity and better align with international conventions, but I’m happy to hear your thoughts. |
Beta Was this translation helpful? Give feedback.



Uh oh!
There was an error while loading. Please reload this page.
-
Which part of the application does your idea belong to?
Charts
Description
Hi @alexjustesen,
Before submitting a PR, I’d like to get your feedback on an idea I’ve been considering.
For my own setup, I’ve created custom widgets, and I was wondering if you'd be interested in adjusting the display order of chart colors. Specifically, I'm referring to the order in which the colors are shown, not the colors themselves.
Motivation
Reversing the order of the chart colors could improve the accuracy of data representation across charts. For example:
A ping of 300 ms is quite high, but using green to represent this value can be misleading, as green typically signals that everything is fine. I believe purple, which typically represents a neutral value, would be more fitting here.
In the Down and Upload Latency charts, green is used for the average, and purple is used for “low.” However, since low latency is good, I think low latency should be represented by green, with purple reserved for average (neutral) values.
Below, I’ve included a screenshot to illustrate what I mean.
I’d love to hear your thoughts on these suggestions before moving forward with the PR!
Dark Mode
Light Mode
Beta Was this translation helpful? Give feedback.
All reactions