Skip to content

Conversation

Copy link

Copilot AI commented Nov 21, 2025

The scatterplot's axis labels had incorrect format strings: x-axis used '{value} m' (minutes) despite containing datetime timestamps, and y-axis used '{value} kg' (kilograms) for time saved data.

Changes

  • X-axis: Set type: 'datetime' and removed the minutes format string to properly render timestamp data as dates
  • Y-axis: Changed format from '{value} kg' to '{value} min' to match the time saved metric
xAxis: {
  type: 'datetime',  // Added - renders timestamps as formatted dates
  title: { text: 'Activity' },
  // Removed: labels: { format: '{value} m' }
},
yAxis: {
  title: { text: 'Time Saved' },
  labels: {
    format: '{value} min'  // Changed from '{value} kg'
  }
}

Addresses feedback from #237 (comment #2550768750).


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

Copy link
Author

Copilot AI commented Nov 21, 2025

Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • fonts.googleapis.com
    • Triggering command: /usr/local/bin/node node /home/REDACTED/work/github-value/github-value/frontend/node_modules/.bin/ng build (dns block)
  • www.google-analytics.com
    • Triggering command: /usr/local/bin/node node /home/REDACTED/work/github-value/github-value/frontend/node_modules/.bin/ng lint (dns block)
    • Triggering command: /usr/local/bin/node node /home/REDACTED/work/github-value/github-value/frontend/node_modules/.bin/ng build (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

Copilot AI changed the title [WIP] Address feedback on scatterplot implementation for seats page Fix axis label formatting in seat activity scatterplot Nov 21, 2025
Copilot AI requested a review from austenstone November 21, 2025 19:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants