Hacktoberfest 2026: the issues maintainers tagged for October, open and beginner-friendly. Browse Hacktoberfest issues

Bug report – colour-mapped markers on a date x-axis reset axis to 1970

Open
#2,446 2 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
3/5
Estimated time
1-2 days
Newbie friendliness
45/100
Issue type
Bug
Clarity
Mostly clear
Activity status
Stale
Tech stack
r

Research direction

Start by running the supplied R reprex with plotly 4.10.4 and compare the working size mapping with the failing colour mapping. Trace how colour-mapped markers and Date x values are prepared; done means the x-axis remains within 2022-01-01 through 2022-07-20 when colour = ~rank is used.

Written by the indexing model from the issue text.

Description

Hi

thank you for the great work on plotly for R. While building a simple time-series chart I noticed that mapping a numeric column to color inside a marker trace shifts the x-axis limits to the Unix epoch (1970-01-01). The same variable works fine when mapped to size. The reproducible examples below illustrate the behaviour. Any guidance or fix would be highly appreciated.

Reprex
library(plotly)
library(data.table)

# dummy data -------------------------------------------------------------
set.seed(1)
dt <- data.table(
  y            = cumsum(rnorm(200)),
  rank         = sample(1:100, 200, TRUE),
  size_metric  = rpois(200, 10),
  datetime     = seq(as.Date("2022-01-01"), by = "day", length.out = 200)
)

# -------- WORKS (no colour mapping) -------------------------------------
plot_ly(dt, type = "scatter", mode = "markers") |>
  add_trace(x = ~datetime, y = ~y,
            name = "points", size = ~size_metric) |>
  add_trace(x = ~datetime, y = ~y,
            name = "line", mode = "lines",
            line = list(color = "black"))
# x-axis shows correct 2022-20xx window

# -------- WORKS (size mapped to same field) -----------------------------
plot_ly(dt, type = "scatter", mode = "markers") |>
  add_trace(x = ~datetime, y = ~y,
            name = "points", size = ~rank) |>
  add_trace(x = ~datetime, y = ~y,
            name = "line", mode = "lines",
            line = list(color = "black"))
# ✓ still correct axis

# -------- FAILS (colour mapping) ----------------------------------------
plot_ly(dt, type = "scatter", mode = "markers") |>
  add_trace(x = ~datetime, y = ~y,
            name = "points", colour = ~rank) |>
  add_trace(x = ~datetime, y = ~y,
            name = "line", mode = "lines",
            line = list(color = "black"))
# ✗ x-axis resets to 1970-01-01
Expected

Axis limits stay within the data’s date range (2022-01-01 … 2022-07-20).

Actual

When colour = ~rank is used, the x-axis jumps to epoch 1970-01-01.

Tested with

packageVersion("plotly")  # 4.10.4
R.version.string          # R 4.3.2 (MacOS Darwing)
Dominant language
R
Stars
2.7k
Forks
641
PR merge metrics
No merged PRs in 30d

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from plotly/plotly.R

All issues in plotly/plotly.R

Similar issues

More R issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.