From aa4ebf9e2f1277420ab9324415eced150f48273d Mon Sep 17 00:00:00 2001 From: suriyaprakasamr Date: Sun, 6 Sep 2026 19:36:43 +0530 Subject: [PATCH 1/2] 1052603: Document custom colors for track changes Added section on custom colors for track changes in DOCX editor. --- .../Word/Word-Processor/vue/track-changes.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Document-Processing/Word/Word-Processor/vue/track-changes.md b/Document-Processing/Word/Word-Processor/vue/track-changes.md index 09f8a0d6b4..20fcf3b180 100644 --- a/Document-Processing/Word/Word-Processor/vue/track-changes.md +++ b/Document-Processing/Word/Word-Processor/vue/track-changes.md @@ -158,6 +158,23 @@ this.$refs.container.documentEditor.selection.navigateNextRevision(); */ this.$refs.container.documentEditor.selection.navigatePreviousRevision(); ``` +## Custom Colors for Track Changes + +You can set an array of colors to show track changes such as insertions and deletions in the DOCX editor. +Each author is assigned a color in order: the first author gets the first color, the second author gets the next, and so on. +If there are more authors than colors, the assignment starts again from the beginning of the array. + +The following example illustrates how to set the color order for track changes in the DOCX Editor + +```ts +mounted() { + this.$refs.container.documentEditorSettings.revisionSettings.revisionColors = [ + '#0e76b1', + '#bb00ff', + '#c14f16' + ]; + } +``` ## Filtering changes based on user From a89bb19a6e36cb6bbd3da9052dc692bb1b1fe68c Mon Sep 17 00:00:00 2001 From: Vellaisamy Auvudaiappan Date: Mon, 7 Sep 2026 13:34:23 +0530 Subject: [PATCH 2/2] 1052603-modified to single line in Custom Colors for tc in track-changes.md file --- Document-Processing/Word/Word-Processor/vue/track-changes.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Document-Processing/Word/Word-Processor/vue/track-changes.md b/Document-Processing/Word/Word-Processor/vue/track-changes.md index 20fcf3b180..501dfcde11 100644 --- a/Document-Processing/Word/Word-Processor/vue/track-changes.md +++ b/Document-Processing/Word/Word-Processor/vue/track-changes.md @@ -160,9 +160,7 @@ this.$refs.container.documentEditor.selection.navigatePreviousRevision(); ``` ## Custom Colors for Track Changes -You can set an array of colors to show track changes such as insertions and deletions in the DOCX editor. -Each author is assigned a color in order: the first author gets the first color, the second author gets the next, and so on. -If there are more authors than colors, the assignment starts again from the beginning of the array. +You can set an array of colors to show track changes such as insertions and deletions in the DOCX editor. Each author is assigned a color in order: the first author gets the first color, the second author gets the next, and so on. If there are more authors than colors, the assignment starts again from the beginning of the array. The following example illustrates how to set the color order for track changes in the DOCX Editor