Skip to content

Commit 166efbf

Browse files
committed
Final docs for 2.4.2 release
1 parent 9caa1b9 commit 166efbf

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docs/modules/ROOT/pages/user-guide/reports/graph3d.adoc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22

33
link:../../extensions/advanced-visualizations[label:Advanced Visualization[]]
44

5-
The 3D graph report extends the default graph visualization with another dimensions.
6-
It supports ~95% of the features & customizations for the regular (2D) graph, including rule-based styling and report actions.
5+
The 3D graph report extends the default graph visualization with another dimension.
6+
It supports most of the features & customizations for the regular (2D) graph, including rule-based styling and report actions.
7+
Users can explore the 3D graph by zooming and panning through 3D space.
8+
79

810
== Examples
911

src/extensions/actions/ActionsRuleCreationModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ export const NeoCustomReportActionsModal = ({
252252

253253
// When we are accessing node properties (not page names), parse the node label + property pair to only show properties.
254254
// Fields for graph and map reports are structured differently than regular reports (table, bar, etc.), so we access suggestions differently.
255-
if (rule.customization !== 'set page' && (type == 'graph' || type == 'map')) {
255+
if (rule.customization !== 'set page' && (type == 'graph' || type == 'map' || type == 'graph3d')) {
256256
suggestions = suggestions.map((e) => e.split('.')[1] || e);
257257
}
258258

0 commit comments

Comments
 (0)