Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi everyone.
I wanted to know, how to do multple selection using pressed CTRL button and mouse click, instead of mouse click. I set
Solved! Go to Solution.
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
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
That code snippet looks good.
Can you share the whole source code for debugging?
Ignat Vilesov,
Software Engineer
Microsoft Power BI Custom Visuals
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
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
User | Count |
---|---|
5 | |
4 | |
3 | |
2 | |
2 |
User | Count |
---|---|
8 | |
6 | |
4 | |
4 | |
4 |