Skip to content

Commit 9a541b3

Browse files
committed
Merge
2 parents ee32fe1 + 632749e commit 9a541b3

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

Diff for: changelog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This is a patch release following 2.4.0. It contains several new features for se
1818
Included:
1919
- Improvements to customizability of the bar chart (styling, legend customization, report actions). [#689](https://github.com/neo4j-labs/neodash/pull/689)
2020
- Improved dashboard settings interface, fixed alignment for table download button. [#729](https://github.com/neo4j-labs/neodash/pull/729)
21-
- Adjusted ordering of suggested labels/properties for parameter selectors. [#728](https://github.com/neo4j-labs/neodash/pull/728)
21+
- Adjusted ordering of suggested labels/proFperties for parameter selectors. [#728](https://github.com/neo4j-labs/neodash/pull/728)
2222
- Better handling of date parameters when saving/loading dashboards. [#727](https://github.com/neo4j-labs/neodash/pull/727)
2323
- Fixed incorrect z-index issue for form creation modals. [#726](https://github.com/neo4j-labs/neodash/pull/726)
2424
- Adjusted filtering tooltip on tables to avoid hiding result data. [#712](https://github.com/neo4j-labs/neodash/pull/712)

Diff for: release-notes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ This is a release with a large amount of quality of life improvements, as well a
99
- SSO auth tokens are now automatically refreshed on expiry. [#611](https://github.com/neo4j-labs/neodash/pull/611)
1010
- Title of the browser tab NeoDash runs on is now automatically set to the dashboard name. [#708](https://github.com/neo4j-labs/neodash/pull/708)
1111
- Fixed issue where invisible table columns were not handled correctly. [#695](https://github.com/neo4j-labs/neodash/pull/695)
12-
- Miscellaneous bug fixes, style improvements & stability fixes. [#744](https://github.com/neo4j-labs/neodash/pull/744)
12+
- Miscellaneous bug fixes, style improvements & stability fixes. [#744](https://github.com/neo4j-labs/neodash/pull/744)

Diff for: src/config/ReportConfig.tsx

+22
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,28 @@ const _REPORT_TYPES = {
415415
type: SELECTION_TYPES.NUMBER,
416416
default: 0.25,
417417
},
418+
expandHeightForLegend: {
419+
label: 'Expand Height For Legend',
420+
type: SELECTION_TYPES.LIST,
421+
values: [true, false],
422+
default: false,
423+
},
424+
innerPadding: {
425+
label: 'Inner Padding',
426+
type: SELECTION_TYPES.NUMBER,
427+
default: 0,
428+
},
429+
legendPosition: {
430+
label: 'Legend Position',
431+
type: SELECTION_TYPES.LIST,
432+
values: ['Horizontal', 'Vertical'],
433+
default: 'Vertical',
434+
},
435+
padding: {
436+
label: 'Padding',
437+
type: SELECTION_TYPES.NUMBER,
438+
default: 0.25,
439+
},
418440
},
419441
},
420442
pie: {

0 commit comments

Comments
 (0)