Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
mrybalko
Creator II
Creator II

Extension: Get name of selected dimension

Good day

Just started my first extension. I need get name of selected dimension in properties tab.

Буфер обмена-1.jpg

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.

1 Solution

Accepted Solutions
rbecher
MVP
MVP

Hi Maxim,

try

var test = this.Data.HeaderRows[0][0].text

- Ralf

Astrato.io Head of R&D

View solution in original post

2 Replies
rbecher
MVP
MVP

Hi Maxim,

try

var test = this.Data.HeaderRows[0][0].text

- Ralf

Astrato.io Head of R&D
mrybalko
Creator II
Creator II
Author

Thank you Ralf