Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Good day
Just started my first extension. I need get name of selected dimension in properties tab.
I want get in my script string "A".
I tried
var test = this.Layout.Chart.Dimension.0.Field;
but got only script errors.
Please help.
Hi Maxim,
try
var test = this.Data.HeaderRows[0][0].text
- Ralf
Hi Maxim,
try
var test = this.Data.HeaderRows[0][0].text
- Ralf
Thank you Ralf