-
Notifications
You must be signed in to change notification settings - Fork 120
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
feat(partition): Flame and icicle chart #965
Conversation
Codecov Report
@@ Coverage Diff @@
## master #965 +/- ##
==========================================
+ Coverage 71.01% 71.58% +0.57%
==========================================
Files 344 360 +16
Lines 10929 11266 +337
Branches 2380 2417 +37
==========================================
+ Hits 7761 8065 +304
- Misses 3154 3181 +27
- Partials 14 20 +6
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
# Conflicts: # src/chart_types/partition_chart/layout/utils/group_by_rollup.ts # src/chart_types/partition_chart/layout/viewmodel/viewmodel.ts
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great, nice work! I just have a few comments but nothing blocking.
It seems that the render time is a little longer than the current partition charts, do you notice this too?
stories/icicle/01_unix_icicle.tsx
Outdated
valueFormatter: (d: number) => d, | ||
// fontStyle: 'italic', | ||
textInvertible: true, | ||
// fontWeight: 900, | ||
valueFont: { | ||
// fontFamily: 'Menlo', | ||
// fontStyle: 'normal', | ||
// fontWeight: 100, | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you need these comments still?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've been somewhat relaxed about leaving property uses present but commented out in mocks, for quick manual tests, eg. during making the non-alpha version; let's chat if such lines should be cleared up in the numerous mocks where they may be present, it could be a follow-up PR with a bunch of other file changes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One reason to remove those comments is that those types can change in the future, these commented out text could be outdated without noticing that
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I made the change; getting out of sync wouldn't bother me, or lib developers, but indeed it'd be confusing for someone who only looks at the source sample in storybook (ie. Kibana developer, by and large)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah I see your point @monfera but that could be a slippery slope where we just have comments all over the place with some different than others.
I think we could achieve this same effect by creating some mock or story defaults file that came house a specific use case to be used anywhere. Then we can describe the use more explicitly.
Co-authored-by: Nick Partridge <nick.ryan.partridge@gmail.com>
@nickofthyme thanks for the review. I noticed the comparative slowness. The tree is 18 levels deep and has quite a few nodes (somewhat wide too); and the legends becomes rather long too (lots of HTML elements). Planning to look into it in the alpha stage |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything looks good, I suggest to rework the legend items sorting before waiting for the sorting PR I'm working on for two reasons:
- the legend sorting I'm working is implemented only for xy charts
- the legend items structure depends mostly on the data model that varies from chart type to chart type
Object.assign(bootstrap, { [PARENT_KEY]: bootstrap }); | ||
const result: ArrayNode = bootstrap as ArrayNode; | ||
return result; | ||
return bootstrap as ArrayNode; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is just a clean up on the PR, but seriously looking at that getRootArrayNode
function, it doesn't return strictly an ArrayNode
, the STATISTICS_KEY
and SORT_INDEX_KEY
are not available there.
It's possible that for the root note these values are ignored in the current code, but that doesn't mean that we can easily remember that fact when refactoring/reworking on that file. It can leads to bug if we believe that also the root node is of type ArrayNode
Fixing the type here can go in two direction:
- add missing keys in the bootstrap object with some default values, declare the bootstrap as
Exclude<ArrayNode, parent
- relax the ArrayNode type for the missing keys
- create a RootArrayNode type without these missing keys
This task doesn't need to be handled in this PR, but it's just an example of why ts ignoring or putting as can deal to issues.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, good points!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just pondering... the possible issue with points 1 and 3 is that it'll no longer be possible to model the entire tree as having homogeneous type; I'm sure it's solvable with type guards and such, with some more work.
With option 2, it'd relax the type for all uses, and I wouldn't want to water it up.
I think adding the missing properties to this root node would be a compact, local solution, but it'd still need the as
assertion, because the [PARENT_KEY]
prop demands an ArrayNode
.
So my current plan is to see what I can do locally (eg. just adding the missing props but leaving in place the as
) and continue exploring and likely, discussing, outside this PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK the current solution is, use Omit
to exclude PARENT_KEY
in the assignment:
function getRootArrayNode(): ArrayNode {
const children: HierarchyOfArrays = [];
const bootstrap: Omit<ArrayNode, typeof PARENT_KEY> = {
[AGGREGATE_KEY]: NaN,
[DEPTH_KEY]: NaN,
[CHILDREN_KEY]: children,
[INPUT_KEY]: [] as number[],
[PATH_KEY]: [] as number[],
[SORT_INDEX_KEY]: 0,
[STATISTICS_KEY]: { globalAggregate: 0 },
};
return { ...bootstrap, [PARENT_KEY]: bootstrap } as ArrayNode; // TS doesn't yet handle bootstrapping but the `Omit` above retains guarantee for all props except `[PARENT_KEY`
}
This way, there's still a need for as
, because TS can't type-bootstrap a self-referential object, but it's way better, because should anything in ArrayNode
change, the bootstrap
object must reflect that. So the only part where the type checker is asked to trust the human is the presence of PARENT_KEY
which is a local, single-line assignment right there
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
stories/icicle/01_unix_icicle.tsx
Outdated
valueFormatter: (d: number) => d, | ||
// fontStyle: 'italic', | ||
textInvertible: true, | ||
// fontWeight: 900, | ||
valueFont: { | ||
// fontFamily: 'Menlo', | ||
// fontStyle: 'normal', | ||
// fontWeight: 100, | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One reason to remove those comments is that those types can change in the future, these commented out text could be outdated without noticing that
Co-authored-by: Marco Vettorello <vettorello.marco@gmail.com>
# [24.5.0](v24.4.0...v24.5.0) (2021-01-30) ### Bug Fixes * add theme min radius to point shape ([#996](#996)) ([eb37175](eb37175)) * align tooltip z-index to EUI tooltip z-index ([#931](#931)) ([ffd626b](ffd626b)) * chart state and series functions cleanup ([#989](#989)) ([944ac6c](944ac6c)) * create unique ids for dot icons ([#971](#971)) ([e1ce768](e1ce768)) * external tooltip legend extra value sync ([#993](#993)) ([13ad05a](13ad05a)) * **legend:** disable focus and keyboard navigation for legend in partition ch… ([#952](#952)) ([03bd2f7](03bd2f7)) * **legend:** hierarchical legend order should follow the tree paths ([#947](#947)) ([f9218ad](f9218ad)), closes [#944](#944) * **legend:** remove ids for circles ([#973](#973)) ([b3f4f90](b3f4f90)) ### Features * **cursor:** improve theme styling for crosshair ([#980](#980)) ([6c4dafd](6c4dafd)) * **legend:** display pie chart legend extra ([#939](#939)) ([d14de01](d14de01)) * **legend:** add keyboard navigation ([#880](#880)) ([87c227d](87c227d)) * **partition:** Flame and icicle chart ([#965](#965)) ([3df73d0](3df73d0)) * **partition:** legend hover options ([#978](#978)) ([f810d94](f810d94)) * **xy:** support multiple point shapes on line, area and bubble charts ([#988](#988)) ([1392b7d](1392b7d))
🎉 This PR is included in version 24.5.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
# [24.5.0](elastic/elastic-charts@v24.4.0...v24.5.0) (2021-01-30) ### Bug Fixes * add theme min radius to point shape ([opensearch-project#996](elastic/elastic-charts#996)) ([98089a9](elastic/elastic-charts@98089a9)) * align tooltip z-index to EUI tooltip z-index ([opensearch-project#931](elastic/elastic-charts#931)) ([f7f1f6f](elastic/elastic-charts@f7f1f6f)) * chart state and series functions cleanup ([opensearch-project#989](elastic/elastic-charts#989)) ([42a7af0](elastic/elastic-charts@42a7af0)) * create unique ids for dot icons ([opensearch-project#971](elastic/elastic-charts#971)) ([0b3e00f](elastic/elastic-charts@0b3e00f)) * external tooltip legend extra value sync ([opensearch-project#993](elastic/elastic-charts#993)) ([7e1096e](elastic/elastic-charts@7e1096e)) * **legend:** disable focus and keyboard navigation for legend in partition ch… ([opensearch-project#952](elastic/elastic-charts#952)) ([dfff3e2](elastic/elastic-charts@dfff3e2)) * **legend:** hierarchical legend order should follow the tree paths ([opensearch-project#947](elastic/elastic-charts#947)) ([7b70186](elastic/elastic-charts@7b70186)), closes [opensearch-project#944](elastic/elastic-charts#944) * **legend:** remove ids for circles ([opensearch-project#973](elastic/elastic-charts#973)) ([ed98481](elastic/elastic-charts@ed98481)) ### Features * **cursor:** improve theme styling for crosshair ([opensearch-project#980](elastic/elastic-charts#980)) ([0248ad6](elastic/elastic-charts@0248ad6)) * **legend:** display pie chart legend extra ([opensearch-project#939](elastic/elastic-charts#939)) ([672a4df](elastic/elastic-charts@672a4df)) * **legend:** add keyboard navigation ([opensearch-project#880](elastic/elastic-charts#880)) ([b471a94](elastic/elastic-charts@b471a94)) * **partition:** Flame and icicle chart ([opensearch-project#965](elastic/elastic-charts#965)) ([9e8b1f7](elastic/elastic-charts@9e8b1f7)) * **partition:** legend hover options ([opensearch-project#978](elastic/elastic-charts#978)) ([acd1339](elastic/elastic-charts@acd1339)) * **xy:** support multiple point shapes on line, area and bubble charts ([opensearch-project#988](elastic/elastic-charts#988)) ([4f23b4f](elastic/elastic-charts@4f23b4f))
Summary
Adds icicle chart as one of the
<Partition>
layout options next to treemap and sunburstAlso closes #964
And closes #957
Comparison of icicle/flame chart with treemap:
Comparison of icicle/flame chart with sunburst/pie:
In short, icicle, or its upright version, the flame chart, are preferable over pie, sunburst and treemap in many general situations as well as in observability eg. monitoring and APM. Due to its prevalence, user familiarity among would-be users is high.
Icicle vs flame: the choice is mostly down to layout on a dashboard; customs for the task or organization, and aesthetic choices.
Also tightens a few types and implementation bits (see the initial commits)
Checklist
src/index.ts
(and stories only import from../src
except for test data & storybook)Todo, in a post
@alpha
PR:FlatTree
function, currently in the story, that transforms a nested JS object tree into the flat representation used by<Partition>