Hi! I am trying to generate an image in SVG-format using the dataskin = gloss option in sgplot. I get the note in the log that: NOTE: The graph will be rendered as an image due to the use of data skins. Is this something that is impossible to fix or will it be possible in anyway? Regards Thomas code below: data temp; do i = 1 to 6; x = ranuni(0); output; end; run; ods graphics /outputfmt = svg; proc sgplot; hbar i /response= x dataskin=gloss; quit;
... View more