Trouble with forward slash | XM Community
Skip to main content

Hi all,

I have what should be a simple question. The code below is part of a dynamic chart and data.addRows adds the labels for the chart. My issue is that the label ‘Group1/Group2’ does not appear because of the forward slash (/). Could anyone please tell me how to correctly escape this character? Thank you for your help.

````````` 

data.addRows(R
            'Other', 100 - local_result],
            'Group1/Group2', local_result],
        ]);

```````

@44RK44 Try change your slash to this unicode string “\u002F”. This represent the slash without being recognized as delimiter.
Let me know if it helps


Leave a Reply