CC: Draw bar & place text on it
Posted: 27 Apr 2026 11:35
It would be cool if we could additionally place text (centered) in a custom column with format = icon e.g. for perfect age columns...
Like this: Taken from: viewtopic.php?t=29617
Sample script (without text ofc):
Like this: Taken from: viewtopic.php?t=29617
Sample script (without text ofc):
Code: Select all
$modified = property("#date.m", "<cc_item>");
$diff = datediff($modified, , "n"); // Difference in minutes
switch (true) {
case $diff == 0: return ''; // draw nothing
case $diff < 1440: return '>draw.bar ' . 100 . ', 66CC66, BBEEBB'; // less than a day
case $diff < 2880: return '>draw.bar ' . 100 . ', FFBB00, FFEE88'; // 1 day
case $diff < 10080: return '>draw.bar ' . 100 . ', DD4444, FFAAAA'; // 2 - 7 days
// ...
default: return '>draw.bar ' . 100 . ', DD44AA, FFAADD';
}