Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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 |
---|---|
8 | |
7 | |
2 | |
2 | |
2 |
User | Count |
---|---|
6 | |
5 | |
4 | |
4 | |
4 |