Hi,
I want to load a customize .cdsenv.viva file on the .cdsinit but without overwriting any previous viva configuration. My intention is only to change some settings but keep previous settings. It works changing by using envSetVAl on .cdsinit but when I load the .cdsenv.viva with the same configuration, it looks that I overwrote the total viva configuration and not only the settings I defined.
For example:
When I load these on the .cdsinit:
envSetVal("viva.graph" "traceMarkerSigDigitsMode" 'string "Manual")
envSetVal("viva.graph" "traceMarkerSignificantDigits" 'string "4")
it looks fine.
But, when I load : envLoadFile(.cdsenv.viva) on the .cdsinit with the following lines on the cdsenv.viva:
viva.graph traceMarkerSigDigitsMode string "Manual"
viva.graph traceMarkerSignificantDigits string "4"
The interface changes completely.
I'd like to be able to set viva configuration by loading the customize .cdsenv.viva file since with that way, I can have all the viva configuration on the file and just comment all and uncommented what I'm changing.
Could you please help me?