Forum Discussion

angelflight's avatar
angelflight
Frequent Visitor
5 years ago

Issue implementing a context menu

I am trying to add a context menu to my visual, and I'm using the example provided here:

 

https://github.com/microsoft/PowerBI-visuals/blob/gh-pages/tutorials/building-bar-chart/adding-context-menu-to-the-bar.md

 

 svg.on('contextmenu', () => {
const mouseEvent: MouseEvent = d3.event as MouseEvent;
const eventTarget: EventTarget = mouseEvent.target;
let dataPoint = d3.select(eventTarget).datum();
this.selectionManager.showContextMenu(dataPoint ? dataPoint.selectionId : {}, {
x: mouseEvent.clientX,
y: mouseEvent.clientY
});
mouseEvent.preventDefault();
});

I am getting this error referring to the use of eventTarget in the d3.select:

 

 

 TS2769: No overload matches this call.
Overload 1 of 2, '(selector: string): Selection<BaseType, unknown, HTMLElement, any>', gave the following error.
Argument of type 'EventTarget' is not assignable to parameter of type 'string'.
Overload 2 of 2, '(node: BaseType): Selection<BaseType, unknown, null, undefined>', gave the following error.
Argument of type 'EventTarget' is not assignable to parameter of type 'BaseType'.
Type 'EventTarget' is missing the following properties from type 'Window': applicationCache, clientInformation, closed, customElements, and 221 more. 

'

Any help/guidance would be appreciated....

 

Thanks,

 

Stephan

3 Replies

    • angelflight's avatar
      angelflight
      Frequent Visitor

      Thank you dm-p and Greg_Deckler for your suggestions. Neither quite worked for me. Pardon my lack of experience, but EventTarget does not appear to have any attributes, leading me to think one needs to use that reference in some selector to get at the attributes. Setting the type like this let dataPoint = d3.select(<d3.BaseType>eventTarget).datum(); worked somewhat, but then dataPoint did not have a selectionId attribute. Seems like d3.select wants the selector to be a string. Ultimately, I solved the problem by cheating. Since I only want one context menu to appear no matter where the user clicks, I hard-coded the reference:

       

      svg.on('contextmenu', () => {
      const mouseEvent: MouseEvent = d3.event as MouseEvent;
      let dataPoint: any = d3.select("svg").datum();
      this.selectionManager.showContextMenu(dataPoint ? dataPoint.selectionId : {}, {
      x: mouseEvent.clientX,
      y: mouseEvent.clientY
      });
      mouseEvent.preventDefault();
      });

       

      Thanks again for your help!

  • Greg_Deckler's avatar
    Greg_Deckler
    Community Champion

    angelflight  If I am reading that right, it's a type mistmatch situation. eventTarget is an EventTarget object and not a string. My guess is that you need to access an attribute of eventTarget like eventTarget.attribute ?