@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Charts: Project Activity: Use separate line colors

Summary:
Don't use the same color for two different lines in the chart.

Closes T16205

Test Plan:
* Enable the "Facts" application at http://phorge.localhost/applications/view/PhabricatorFactApplication/
* Go to http://phorge.localhost/project/reports/1/ and look at the line and its area in the chart

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T16205

Differential Revision: https://we.phorge.it/D26236

+2 -2
+2 -2
src/applications/project/chart/PhabricatorProjectActivityChartEngine.php
··· 46 46 $function->getFunctionLabel() 47 47 ->setKey('moved-in') 48 48 ->setName(pht('Tasks Moved Into Project')) 49 - ->setColor('rgba(128, 128, 200, 1)') 50 - ->setFillColor('rgba(128, 128, 200, 0.15)'); 49 + ->setColor('rgba(182, 126, 200, 1)') 50 + ->setFillColor('rgba(182, 126, 200, 0.15)'); 51 51 52 52 $functions[] = $function; 53 53