diff --git a/lightrag_webui/src/components/graph/SettingsDisplay.tsx b/lightrag_webui/src/components/graph/SettingsDisplay.tsx
new file mode 100644
index 00000000..d946ded9
--- /dev/null
+++ b/lightrag_webui/src/components/graph/SettingsDisplay.tsx
@@ -0,0 +1,19 @@
+import { useSettingsStore } from '@/stores/settings'
+
+/**
+ * Component that displays current values of important graph settings
+ * Positioned to the right of the toolbar at the bottom-left corner
+ */
+const SettingsDisplay = () => {
+ const graphQueryMaxDepth = useSettingsStore.use.graphQueryMaxDepth()
+ const graphMinDegree = useSettingsStore.use.graphMinDegree()
+
+ return (
+
+
Depth: {graphQueryMaxDepth}
+
Degree: {graphMinDegree}
+
+ )
+}
+
+export default SettingsDisplay
diff --git a/lightrag_webui/src/features/GraphViewer.tsx b/lightrag_webui/src/features/GraphViewer.tsx
index 6d1979c5..1701636d 100644
--- a/lightrag_webui/src/features/GraphViewer.tsx
+++ b/lightrag_webui/src/features/GraphViewer.tsx
@@ -17,6 +17,7 @@ import Settings from '@/components/graph/Settings'
import GraphSearch from '@/components/graph/GraphSearch'
import GraphLabels from '@/components/graph/GraphLabels'
import PropertiesView from '@/components/graph/PropertiesView'
+import SettingsDisplay from '@/components/graph/SettingsDisplay'
import { useSettingsStore } from '@/stores/settings'
import { useGraphStore } from '@/stores/graph'
@@ -178,6 +179,8 @@ const GraphViewer = () => {
{/*
*/}
+
+
)
}