Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Contracts dashboards: assignees ranking #3075

Merged
merged 21 commits into from
May 22, 2020
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
3cc9498
Saving the remote csv data as a global variable to make methods more …
eltercero May 13, 2020
629fd7f
Bar charts for amount distribution, process type and contract type.
eltercero May 14, 2020
51971a5
Assignees Ranking table for Contracts Dashboards
eltercero May 18, 2020
dd94d16
Post rebase conflict fix.
eltercero May 18, 2020
7773551
Set order date DESC instead of ASC
eltercero May 18, 2020
8b831e7
Only taking into account contracts with "Formalizado" or "Adjudicado"…
eltercero May 18, 2020
2f68a15
Fixing tests
eltercero May 19, 2020
0c7f21e
Setting up initial_amount value too to avoid unexpected undefined or …
eltercero May 19, 2020
307702a
Adding link to the official site for contracts and tenders show
eltercero May 19, 2020
ccc7e9b
Performance fixes
eltercero May 19, 2020
8e6ac49
Using the same table component in asignees ranking (Summary) as in Co…
eltercero May 19, 2020
71e0b01
Sorting bar charts by value
eltercero May 19, 2020
3789a06
Fixing tests
eltercero May 21, 2020
a57b6a8
Translations fixes
eltercero May 21, 2020
5be294a
Improving readability in function
eltercero May 21, 2020
650eb98
Merge branch '3046-assignees-ranking' of github.com:PopulateTools/gob…
eltercero May 21, 2020
f0ac732
Using destructuring and changing double equals to triple equals.
eltercero May 21, 2020
98b60e0
improving readability in several functions
eltercero May 21, 2020
927d82d
Removing uuid()
eltercero May 21, 2020
608c0e8
Stop listening to events when the component is destroyed
eltercero May 21, 2020
8f55776
In case the url comes with a nonexistent id
eltercero May 22, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Sorting bar charts by value
  • Loading branch information
eltercero committed May 21, 2020
commit 71e0b0163a44802beb8677dddbe1d0ea060499c2
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class GroupPctDistributionBars {
.x(d3.scaleThreshold())
.dimension(dimension)
.group(groupedDimension)
.ordering(d => d.key)
.ordering(d => -d.value)
.labelOffsetX(-_initialLabelOffset)
.gap(_gap)
.elasticX(true)
Expand Down