Foreground config for data visualization.
This commit is contained in:
parent
78cf027f39
commit
4881b12e16
@ -626,7 +626,7 @@ TiddlyWiki >> networkView [
|
||||
|
||||
{ #category : #accessing }
|
||||
TiddlyWiki >> networkViewBackground [
|
||||
^ self configDictionary at: 'networkView' at: 'background' ifAbsentPut: [Color lightGray]
|
||||
^ self config at: 'networkView' at: 'background' ifAbsentPut: [Color lightGray]
|
||||
]
|
||||
|
||||
{ #category : #accessing }
|
||||
@ -636,7 +636,12 @@ TiddlyWiki >> networkViewBackground: aColor [
|
||||
|
||||
{ #category : #accessing }
|
||||
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 }
|
||||
|
Loading…
Reference in New Issue
Block a user