Selector SVG element

I'm trying to make a dynamic table in svg node db1.

Using this example works great. We see some data but changing dynamically is not working due the reason I don't know what selector to use to change the data.
This is for example the second row (index start at 1, headers is also counted as row) third column.
what should the selector be for this element?

the best and most accurate way to get a selector is to open dev tools on your browser and look at the structure. Most browsers devtools also have a right-click, copy selector (but it is often not exactly what you want, but it can help)

You can even test your selector is "what doing you want" by entering it in the devtools console

`$$('.some#selector')`

and it will show you exactly what it targets. If you got it wrong, it will be nothing. If you were too wide, it may include lots of things.

image

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.