How can i see my plugin name in the Power BI Visual plugin List

0 votes

How Can i see my plugin in "PowerBIVisualsPlayground" plugins list?

So when i create an iVisual it created some default code where on the plugin list it says uncomment it to see your plugin in "powerbivisualsplayground" plugins

So, i followed it and uncomment the code ---

i have created a IVisual i the PowerBI visual ---
/* creating ivisualplugin that is used to represent ivisual. */

 //uncomment it to see your plugin in "powerbivisualsplayground" plugins list
 //remember to finally move it to plugins.ts

module powerbi.visuals.plugins {
    export var newvisual: ivisualplugin = {
        name: 'newvisual',
        capabilities: newvisual.capabilities,
        create: () => new newvisual()
    };
}

i have uncommented the default code to see my Visual name list o the PowerBI Plugin list but still, I cannot see my plugin name in the PowerBIVisualsPlayground" plugins list.

I have also tried to move my code to plugins.ts but still no result !!

export var newvisual: ivisualplugin = {
    name: 'newvisual',
    watermarkKey: 'newvisual',
    capabilities: newvisual.capabilities,
    create: () => new newvisual()
};

Thanks.

Nov 8, 2018 in Power BI by Shubham
• 13,490 points
1,105 views

1 answer to this question.

0 votes

there is a couple of errors in your code.

in the first line ivisualplugin, it Should be IVisualPlugin

Change your class and capabilities name from newvisual to Newvisual

So the answer is :

export var newvisual: IVisualPlugin = {
    name: 'newvisual',
    capabilities: Newvisual.capabilities,
    create: () => new Newvisual()
};

Hope it helps!

answered Nov 8, 2018 by Upasana
• 8,620 points

Related Questions In Power BI

0 votes
1 answer
0 votes
1 answer

Can I create a Power BI report in Office 365 without my locally installed Office Excel?

Yess!! You can achieve this by using ...READ MORE

answered Sep 26, 2018 in Power BI by Kalgi
• 52,360 points
720 views
0 votes
1 answer

How do I format the KPI in Power BI

format the KPI by selecting the paint ...READ MORE

answered Oct 9, 2018 in Power BI by Kalgi
• 52,360 points
997 views
0 votes
1 answer

How do I know who in my organization has a Power BI account?

You can view the Azure Active Directory ...READ MORE

answered Oct 15, 2018 in Power BI by Hannah
• 18,570 points
889 views
0 votes
1 answer

Displaying Table Schema using Power BI with Azure IoT Hub

Answering your first question, Event Hubs are ...READ MORE

answered Aug 1, 2018 in IoT (Internet of Things) by nirvana
• 3,130 points
1,007 views
+1 vote
1 answer

Unable to install connector for Power Bi and PostgreSQL

I think the problem is not at ...READ MORE

answered Aug 22, 2018 in Power BI by nirvana
• 3,130 points
2,472 views
+2 votes
2 answers

Migrate power bi collection to power bi embedded

I agree with Kalgi, this method is ...READ MORE

answered Oct 11, 2018 in Power BI by Hannah
• 18,570 points
1,147 views
+1 vote
1 answer

Connect power bi desktop to dataset and create custom reports

Yes using Power BI REST API to ...READ MORE

answered Sep 18, 2018 in Power BI by Kalgi
• 52,360 points
1,431 views
0 votes
1 answer

To create link visual in Power BI

You can disable sandboxing by adding this ...READ MORE

answered Nov 22, 2018 in Power BI by Upasana
• 8,620 points
641 views
0 votes
1 answer

To Calculate the Standard Deviation in Power BI

Suppose you've to obtain the Standard Deviation ...READ MORE

answered Nov 26, 2018 in Power BI by Upasana
• 8,620 points
15,081 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP