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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
ysapiyev
Responsive Resident
Responsive Resident

Multiple selection in custom visual

Hi everyone.

 

I wanted to know, how to do multple selection using pressed CTRL button and mouse click, instead of mouse click. I set

this.selectionManager.select(d.identity, true), and it selects multiple data, but just by mouse click. How to alter it for identification of CTRL button pressed?
1 ACCEPTED SOLUTION
v-viig
Community Champion
Community Champion

Hello @ysapiyev,

 

You should use something like this (event documentation😞

 

// event is a mouse event

const isCtrlKeyPressed = event.ctrlKey;

this.selectionManager.select(d.identity, isCtrlKeyPressed);

Ignat Vilesov,

Software Engineer

 

Microsoft Power BI Custom Visuals

pbicvsupport@microsoft.com

 

View solution in original post

6 REPLIES 6
v-viig
Community Champion
Community Champion

Hello @ysapiyev,

 

You should use something like this (event documentation😞

 

// event is a mouse event

const isCtrlKeyPressed = event.ctrlKey;

this.selectionManager.select(d.identity, isCtrlKeyPressed);

Ignat Vilesov,

Software Engineer

 

Microsoft Power BI Custom Visuals

pbicvsupport@microsoft.com

 

ysapiyev
Responsive Resident
Responsive Resident

Hello  @v-viig,

 

Could you have a look at my problem?

 

Regards

Yerkhan

v-viig
Community Champion
Community Champion

That code snippet looks good.

Can you share the whole source code for debugging?

 

Ignat Vilesov,

Software Engineer

 

Microsoft Power BI Custom Visuals

pbicvsupport@microsoft.com

ysapiyev
Responsive Resident
Responsive Resident

@v-viig,

 

Yes, should I send you visual.ts? And please share your email.

 

Regards,

Yerkhan

v-viig
Community Champion
Community Champion

It'd be better to share all of files.

You can send all of them to pbicvsupport@microsoft.com.

 

 

Ignat Vilesov,

Software Engineer

 

Microsoft Power BI Custom Visuals

pbicvsupport@microsoft.com

ysapiyev
Responsive Resident
Responsive Resident

Hello @v-viig,

 

So ,as I understood, it should look like this, right?

var event =  <Event>d3.event;
const isCtrlKeyPressed =event.ctrlKey;

this.selectionManager.select(d.identity, isCtrlKeyPressed);

However, it shows me that there is no property ctrlKey in event. I googled, and it gives me similar solution as yours. What can be wrong?

 

Regards,

Yerkhan

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.