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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
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

Data & AI Engineer at Orionbelt.ai - a GenAI Semantic Layer Venture, Inventor of Astrato Engine

View solution in original post

2 Replies
rbecher
MVP
MVP

Hi Maxim,

try

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

- Ralf

Data & AI Engineer at Orionbelt.ai - a GenAI Semantic Layer Venture, Inventor of Astrato Engine
mrybalko
Creator II
Creator II
Author

Thank you Ralf