Hello



Hello
I would like to colorize the %CP curve of User Charts Tiles in Overview as following :Expected results, currently available in the Ride tab using a user data curve:But currently, the configuration of colors using a zone string is unavailable in a User Chart Tile (monochrome Red) :Would it be possible to do it in some way?If not, could developpers plan it in the future improvments?
IIRC there was a comment from Mark when he implemented User charts about the lack of support for changing curve colors using Qt Charts, I don’t know if this restriction still applies.

It's a shame that it takes so long to land on your system. I tested it with units over 5 hours. Without precise measurement, the tile chart loads in 4 seconds.
I use a DEV version of GC from 01/29/2026 on Arch Linux.


In fact, I filled the curves by adding line segments (see attached .gchart file).This makes the graph extremely slow.I could avoid this using "fill curve" setting with your plots, but curves disappear when I use this setting.
{
init {
zone <- 1;
chartWidth <- 1200; # approximation of the max width (pixels)
spacing <- round(length(samples(SECS)) / chartWidth );
zigzagCount <- (spacing>0)?spacing:1;
}
relevant {
Data contains "P";
zones(power,time)[zone-1]>0;
}
finalise{
zLow <- zones(power,low)[zone-1];
zHigh <- zones(power,high)[zone-1];
fullActivitiePower <- samples(POWER);
yy <- sapply(fullActivitiePower, {x > zHigh ? zHigh : x;});
xx <- samples(SECS);
n <- length(xx);
numericalSeries <- seq(0, n - 1, zigzagCount);
idx <- match(numericalSeries, xx);
insert <- rep(0, length(idx));
yy[idx] <- insert;
}
x { xx; }
y { yy; }
}

