Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
690 views
in Technique[技术] by (71.8m points)

ag grid - Can not set background-image style containing svg image with getRowStyle

I am trying to create a watermark using a dynamic svg image as a background. I need to create a new style with background-image but it is not renderer as expected. I tried every combination of quotes (single, double, escaped, backtick) but with no success. Here is my code:

getRowStyle={function (params) {
        if (params.node.rowIndex % 2 === 0) {
          const bg = "url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='100px' width='100px'><text transform='translate(20, 100) rotate(-45)' fill='rgb(245,45,45)' font-size='20' >my text</text></svg>")";
          const wmStyle = new Object();
          wmStyle.backgroundImage = bg;
          return wmStyle;
          }
    }}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...