cadence plot default setting

Please add these lines to your local “.cdsinit” files, and they will help change the default ADE plot configuration to make it more visually appealing. Changes included are like background color, line width, font. and etc.

;—— ADE Plot Configuration ———–

;Change default plot mode in ADE XL to Append instead of Replace:
envSetVal(“asimenv.plotting” “artistPlottingMode” ‘string “Append”)

;Change default plot option in result browser to Append instead of Replace:
envSetVal(“viva.browser” “plotStyle” ‘string “Append”)

;Change default background color of visualization graphs to white:
envSetVal(“viva.graphFrame” “background” ‘string “white”)

;Making visualization fonts bigger:
envSetVal(“viva.graph” “titleFont” ‘string “Open Sans,10,-1,5,50,0,0,0,0,0”)
envSetVal(“viva.axis” “font” ‘string “Open Sans,12,-1,5,50,0,0,0,0,0”)
envSetVal(“viva.traceLegend” “font” ‘string “Open Sans,12,-1,5,50,0,0,0,0,0”)

;Change order of colors:
envSetVal(“viva.graph” “colorBank” ‘string “black; red; blue; green; yellow”)
;Change Line Thickness:
envSetVal(“viva.trace” “lineThickness” ‘string “extrathick”)




Leave a comment