Dynamic Axis Labels (Ticks) Misalignment with Data Points and Rangeslider
Nadie ha tomado este issue todavía.
Evaluación
- Dificultad
- 4/5
- Tiempo estimado
- 3-5 días
- Aptitud para principiantes
- 35/100
- Tipo de issue
- Error
- Claridad
- Bastante claro
- Estado de actividad
- Estancado
- Stack tecnológico
- r
- Área
- data-visualization
Línea de trabajo
Comienza con el ejemplo reproducible en R usando plotly, lubridate, dplyr, tickvals y el x-axis rangeslider. Investiga cómo interactúan los valores de ticks semanales fijos con el ajuste de ticks provocado por el zoom; se considera terminado cuando las etiquetas semanales basadas en lunes siguen siendo correctas mientras el zoom cambia el intervalo para evitar la saturación.
Escrito por el modelo de indexación a partir del texto del issue.
Descripción
Description:
In my Plotly chart with a rangeslider, I'm facing a dilemma with axis labels (ticks). Without using tickvals, the chart incorrectly displays Sunday as the start of the week. When using tickvals to correct this, the axis labels don't dynamically adjust when zooming out, leading to overcrowding.
Expected Behavior:
- The x-axis should consistently display Monday as the start of each week.
- When zooming out, the axis should dynamically adjust to a coarser interval (e.g., every month, every quarter, or every year) to maintain readability.
- The rangeslider should allow smooth navigation while preserving appropriate tick density at different zoom levels.
Actual Behavior:
- Without
tickvals:
-
The chart incorrectly uses Sunday as the start of the week.
-
Zooming functions work as expected, with appropriate tick density at different zoom levels.
- With
tickvals:
-
The chart correctly displays Monday as the start of the week.
-
When zooming out, the axis doesn't adjust to a more appropriate interval, resulting in overcrowded and illegible labels.
Reproducible Example:
library(shiny)
library(plotly)
library(lubridate)
library(dplyr)
# Example data
data <- data.frame(
date = seq(as.Date("2024-01-01"), Sys.Date(), by = "day"),
value = runif(length(seq(as.Date("2024-01-01"), Sys.Date(), by = "day")), 10, 100)
)
# Aggregate data by week
data_weekly <- data %>%
mutate(week = floor_date(date, unit = "week", week_start = 1)) %>%
group_by(week) %>%
summarise(value = sum(value))
# Create a plot with the week start as the x-axis
fig <- plot_ly(data = data_weekly,
x = ~week,
y = ~value,
type = 'bar') %>%
layout(xaxis = list(
range = c(floor_date(max(data$date) - months(3) + days(4),
unit = "week", week_start = 1), # Set the x-axis range starting 3 months before the latest date
max(data$date + days(4))), # Extend the range to the maximum date (with 4 extra days for buffer)
tickvals = data_weekly$week # Use the start of each week as the ticks on the x-axis
)
)
fig %>%
config(displayModeBar = FALSE) %>%
layout(xaxis = list(rangeslider = list(visible = TRUE))) # Add a range slider for the x-axis
Additional Notes:
- The issue arises from the need to use
tickvalsto enforce Monday as the week start, which then prevents Plotly's automatic tick adjustment. - An ideal solution would combine correct week start representation (Monday) with dynamic tick adjustment when zooming.
System info
R version: 4.3.3 (2024-02-29)
Plotly version: 4.10.4
Operating System: Linux 5.15.173.1-1.cm2
- Lenguaje dominante
- R
- Estrellas
- 2.7k
- Forks
- 641
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Más de plotly/plotly.R
-
Dificultad 2/5 1-3 horas Aptitud para principiantes 62/100
-
Dificultad 4/5 3-5 días Aptitud para principiantes 35/100
-
Dificultad 3/5 1-2 días Aptitud para principiantes 68/100
-
Data gets dropped in add_trace and consequently points have the wrong color if NA is present Abierto
Dificultad 3/5 1-2 días Aptitud para principiantes 72/100
-
save_image Error Abierto
Dificultad 3/5 1-2 días Aptitud para principiantes 52/100