Foreground config for data visualization.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2024-05-31 14:11:47 -05:00
parent 78cf027f39
commit 4881b12e16

View File

@ -626,7 +626,7 @@ TiddlyWiki >> networkView [
{ #category : #accessing } { #category : #accessing }
TiddlyWiki >> networkViewBackground [ TiddlyWiki >> networkViewBackground [
^ self configDictionary at: 'networkView' at: 'background' ifAbsentPut: [Color lightGray] ^ self config at: 'networkView' at: 'background' ifAbsentPut: [Color lightGray]
] ]
{ #category : #accessing } { #category : #accessing }
@ -636,7 +636,12 @@ TiddlyWiki >> networkViewBackground: aColor [
{ #category : #accessing } { #category : #accessing }
TiddlyWiki >> networkViewForeground [ TiddlyWiki >> networkViewForeground [
^ self configDictionary at: 'networkView' at: 'foreground' ifAbsentPut: [Color blue] ^ self config at: 'networkView' at: 'foreground' ifAbsentPut: [Color blue]
]
{ #category : #accessing }
TiddlyWiki >> networkViewForeground: aColor [
self config at: 'networkView' at: 'foreground' put: aColor.
] ]
{ #category : #accessing } { #category : #accessing }