-
Notifications
You must be signed in to change notification settings - Fork 10
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
item-matrix should support the same categories as item-piechart #368
Comments
I don't see a way to extend the |
I think I understand the request, but let me clarify, because Can we maybe see a way for pie-chart directive to print the details? |
The (somewhat unfortunate) naming convention in my project is the following:
The first thing that's missing is a filter for the COVERED state. I can play around with
The second thing that's missing is an
The "five submatrices" approach, which is perhaps the simplest, would be to modify the
The "five matrices" approach would require:
Resulting in:
Note: I went with subtractive filters so their absence would intuitively result in the full list, but perhaps additive |
How would you configure the names of the states, to use in the subheader? Instead of adding a lot of new functionality and complexity to the This is more user-friendly and probably easier to implement and maintain. |
Good point. You'd need a
As long as I can get the exact same table as my Personally, I don't really see the point of having a matrix with fewer items than the associated pie chart, so I would appreciate if |
In my project, I have the following instance of
item-piechart
:Which gives the following pie chart:
I also have an
item-matrix
with the same requirements as the pie chart:I would like to split my matrix into the same five subsections (or into five submatrices) as the pie chart. However, the
item-matrix
directive currently only provides theonlyuncovered
andonlycovered
filters. The first filter gives me the sum of UNCOVERED and COVERED, while the second gives me the rest.The text was updated successfully, but these errors were encountered: