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

[Gauge] Arc and Circle shapes. #125527

Merged
merged 29 commits into from
Feb 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
5cde4cc
Fixed types, arguments, translation labels.
Kuznietsov Feb 8, 2022
5d031c5
Fixed errors.
Kuznietsov Feb 8, 2022
baec880
Merge branch 'main' into vis_editors_gauge-adaptation
kibanamachine Feb 8, 2022
45b009d
Shape argument turned to required.
Kuznietsov Feb 8, 2022
4516fa9
Merge branch 'vis_editors_gauge-adaptation' of github.com:Kunzetsov/k…
Kuznietsov Feb 8, 2022
1290926
Fixed types mistake.
Kuznietsov Feb 8, 2022
09458f8
Added checks for the gauge arguments.
Kuznietsov Feb 8, 2022
daa6194
Moved (metric/min/max/goal)Accessor arguments to (metric/min/max/goal).
Kuznietsov Feb 8, 2022
7f55056
Splited gauge and lens state.
Kuznietsov Feb 9, 2022
feba1c6
Added support of vis_dimensions.
Kuznietsov Feb 9, 2022
de4b37f
Some fixes for uniformity.
Kuznietsov Feb 9, 2022
705e0a2
Tiny refactoring.
Kuznietsov Feb 9, 2022
81c04a8
Merge branch 'main' into vis_editors_gauge-adaptation
kibanamachine Feb 11, 2022
e16626d
added new shapes.
Kuznietsov Feb 11, 2022
724c0fc
Moved findAccessor out dimensions.
Kuznietsov Feb 11, 2022
83683a8
Made accessors/vis_dimension functionality reusable for other plugins.
Kuznietsov Feb 11, 2022
3fd7ac1
Fixed test snapshots.
Kuznietsov Feb 14, 2022
cca4e81
Fixed snapshots.
Kuznietsov Feb 14, 2022
ae8a7a0
Merge branch 'vis_editors_gauge-adaptation' into vis_editors_gauge-ne…
Kuznietsov Feb 14, 2022
80b64dd
Added support of arc and circle at the gauge shapes.
Kuznietsov Feb 14, 2022
972773c
Fixed icons.
Kuznietsov Feb 14, 2022
adfdd8d
Fixed icon.
Kuznietsov Feb 14, 2022
cb453ed
Fixed angles for the circle.
Kuznietsov Feb 15, 2022
3ecc952
Added minor and major central labels.
Kuznietsov Feb 15, 2022
b25e66c
added centralMajor/Minor/MajorMode.
Kuznietsov Feb 15, 2022
ce40da6
Added support of centralMajor and centralMajorMode args.
Kuznietsov Feb 15, 2022
6caf321
Hidden ticks added.
Kuznietsov Feb 15, 2022
ec879f7
Added tests.
Kuznietsov Feb 15, 2022
4edb9a8
Merge branch 'main' into vis_editors_gauge-new-shapes
Kuznietsov Feb 16, 2022
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
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ export const GAUGE_FUNCTION_RENDERER_NAME = 'gauge_renderer';
export const GaugeShapes = {
HORIZONTAL_BULLET: 'horizontalBullet',
VERTICAL_BULLET: 'verticalBullet',
ARC: 'arc',
CIRCLE: 'circle',
} as const;

export const GaugeTicksPositions = {
HIDDEN: 'hidden',
AUTO: 'auto',
BANDS: 'bands',
} as const;
Expand All @@ -25,6 +28,12 @@ export const GaugeLabelMajorModes = {
NONE: 'none',
} as const;

export const GaugeCentralMajorModes = {
AUTO: 'auto',
CUSTOM: 'custom',
NONE: 'none',
} as const;

export const GaugeColorModes = {
PALETTE: 'palette',
NONE: 'none',
Expand Down
Loading