Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
Anonymous
Not applicable

extracting metadata from dataview

module powerbi.visuals {

    export class MyHelloWorld implements IVisual {
        public static capabilities: VisualCapabilities = { };
        
        private hostContainer: JQuery;
        private table: JQuery;

        public init(options: VisualInitOptions): void {
            this.hostContainer = options.element;
			
			this.hostContainer.append(
				"<table id='MyTableVisual'>" +
                  "<thead><tr>" +
                     "<th>Column</th>" +
                     "<th>isMeasure</th>" +
                     "<th>QueryName</th>" +
                     "<th>GroupName</th>" +
                     "</tr></thead>" +
                  "<tbody></tbody>" +
                "</table>"
			);
        }
        
        public update(options: VisualUpdateOptions) {
            var dataViews = options.dataViews;
            if (!dataViews) return;
            
            $("#MyTableVisual tbody").empty();
            
            var columns = dataViews[0].metadata.columns;
            for (var i = 0; i < columns.length; i++)
            {
                var newHtml = [];
                newHtml.push("<tr>")                
                newHtml.push("<td>" + columns[i].displayName + "</td>")
                newHtml.push("<td>" + columns[i].isMeasure + "</td>") 
                newHtml.push("<td>" + columns[i].queryName + "</td>")
                newHtml.push("<td>" + columns[i].groupName + "</td>")
                newHtml.push("</tr>")
                
                $("#MyTableVisual").append(newHtml.join())
            }           
        }		
    }
}

I am trying to play with visuals, and I am 1 step behind "Hello, World!".  I thought I would output the metadata... but the results are totally not what I expect.   eg: if I use the "FileStorage" dataset, I get...

 

Column isMeasure QueryName GroupName

DateundefinedDateundefined
SalestruebmwBMW
SalestruealfaAlfa Romeo

 

which doens't seem to map that well to : 

https://github.com/Microsoft/PowerBI-visuals/blob/master/src/Clients/PowerBIVisualsPlayground/sample...

 

am I missing something here?  or does my code just suck? 🙂

0 REPLIES 0

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.