<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Custom visual tooltip service not working in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/1123659#M23900</link>
    <description>&lt;P&gt;This is what I was missing when the visual would not show up.&lt;/P&gt;</description>
    <pubDate>Wed, 27 May 2020 15:01:51 GMT</pubDate>
    <dc:creator>BrentonC</dc:creator>
    <dc:date>2020-05-27T15:01:51Z</dc:date>
    <item>
      <title>Custom visual tooltip service not working</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/350062#M10390</link>
      <description>&lt;P&gt;I'm writing a custom visual with some KPIs and a bar chart. I have created the bar chart by following the below article.&lt;BR /&gt;&lt;A href="https://tsmatz.wordpress.com/2016/09/27/power-bi-custom-visuals-programming/" target="_blank"&gt;https://tsmatz.wordpress.com/2016/09/27/power-bi-custom-visuals-programming/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The visual is working fine. Now I want a display a tooltip&amp;nbsp;when mouse hovered on the bar chart. I followed the below documentation (couldn't&amp;nbsp;understand most of it) and implemented the same.&lt;BR /&gt;&lt;A href="https://github.com/Microsoft/PowerBI-visuals/blob/master/Visual/Tooltips.md" target="_blank"&gt;https://github.com/Microsoft/PowerBI-visuals/blob/master/Visual/Tooltips.md&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My visual doesn't show anything. When I cross-checked the culprit was this line in the constructor.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;this.tooltipServiceWrapper = createTooltipServiceWrapper(this.host.tooltipService, options.element);&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;When I commented this line, my visual works fine. What I'm I doing wrong? How to get the tooltips working?&lt;BR /&gt;Please help asap!&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 01 Feb 2018 17:39:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/350062#M10390</guid>
      <dc:creator>satishr</dc:creator>
      <dc:date>2018-02-01T17:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: Custom visual tooltip service not working</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/350422#M10403</link>
      <description>&lt;P&gt;Did you implement&amp;nbsp;&lt;SPAN&gt;createTooltipServiceWrapper?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Can you share the whole source code of your custom visual?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ignat Vilesov,&lt;/P&gt;&lt;P&gt;Software Engineer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;&lt;P&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;&lt;SPAN&gt;pbicvsupport@microsoft.com&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2018 07:56:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/350422#M10403</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2018-02-02T07:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Custom visual tooltip service not working</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/350551#M10411</link>
      <description>&lt;P&gt;Copied&amp;nbsp;&lt;SPAN&gt;tooltipServiceWrapper.ts file from&lt;/SPAN&gt; &lt;A href="https://github.com/Microsoft/PowerBI-visuals-sampleBarChart" target="_blank"&gt;https://github.com/Microsoft/PowerBI-visuals-sampleBarChart&lt;/A&gt; and pasted in my src folder.&lt;BR /&gt;Added "src/tooltipServiceWrapper.ts" to tsconfig.json files part.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Below is my visual.ts. Please let me know if I'm missing anything.&lt;BR /&gt;Now, the visual doesn't show anything. If I comment the first line in the constructor the bar graph shows without tooltips.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;module powerbi.extensibility.visual {
    "use strict";
	
	import ValueFormatter = powerbi.extensibility.utils.formatting.valueFormatter;
	
	export interface BarData {
		Indicator: number;
		Category: string;
	  }
	
  export class Visual implements IVisual {
	  private svg: d3.Selection&amp;lt;SVGElement&amp;gt;; 
	  private g: d3.Selection&amp;lt;SVGElement&amp;gt;;
	  private host: IVisualHost;
	  private tooltipServiceWrapper: ITooltipServiceWrapper;	
	  private bColorPos: string;
	  private bColorNeg: string; 
	  
	constructor(options: VisualConstructorOptions) {
		this.tooltipServiceWrapper = createTooltipServiceWrapper(this.host.tooltipService, options.element);
		this.svg = d3.select(options.element).append('svg');
		this.g = this.svg.append('g');
        this.bColorPos = "#32CD32";
		this.bColorNeg = "#FD625E";
	}
	  
	  
  	public update(options: VisualUpdateOptions) {
			this.setObjectProperties(options);
			this.generateBarChart(options);
		}
		

	public setObjectProperties(options: VisualUpdateOptions) {
			if (options.dataViews[0].metadata.objects)
				{
					if (options.dataViews[0].metadata.objects["bar"] &amp;amp;&amp;amp; options.dataViews[0].metadata.objects["bar"]["bColorPos"]) {this.bColorPos = options.dataViews[0].metadata.objects["bar"]["bColorPos"]["solid"]["color"].toString();}
					if (options.dataViews[0].metadata.objects["bar"] &amp;amp;&amp;amp; options.dataViews[0].metadata.objects["bar"]["bColorNeg"]) {this.bColorNeg = options.dataViews[0].metadata.objects["bar"]["bColorNeg"]["solid"]["color"].toString();}
				}
	  	}		
	  

	public generateBarChart(options: VisualUpdateOptions){

			
			
			var _this = this;
			var barColor1 = this.bColorPos;
			var barColor2 = this.bColorNeg;

			_this.svg.attr({
				height: options.viewport.height,
				width: options.viewport.width
			});

			var gHeight = options.viewport.height * 0.5;
			var gWidth = options.viewport.width ;

			_this.g.attr({
				height: gHeight,
				width: gWidth
			});

			_this.g.attr('transform','translate(0,0)');

			// convert data format
			var data = Visual.dataForBarGraph(options);

			// setup d3 scale
			var xScale = d3.scale.ordinal()
				.domain(data.map(function (d) { return d.Category; }))
				.rangeRoundBands([0, gWidth], 0.1);
			var yMax =
				d3.max(data, function (d) { return d.Indicator });
			var yScale = d3.scale.linear()
				.domain([0, yMax])
				.range([gHeight, 0])

				// remove exsisting axis and bar
			_this.svg.selectAll('.bar').remove();

			// draw bar
			var shapes = _this.g
				.append('g')
				.selectAll('.bar')
				.data(data);

			shapes.enter()
				.append('rect')
				.attr('class', function (d) { return d.Indicator &amp;lt; 0 ? "bar negative" : "bar positive"; })
				.attr('fill', function (d) { return d.Indicator &amp;lt; 0 ? barColor2 : barColor1; })
				.attr('x', function (d) { return xScale(d.Category); })
				.attr('width', xScale.rangeBand())
				.attr('y', function (d) { return d.Indicator &amp;lt; 0 ? yScale(0) : yScale(d.Indicator); })
				.attr('height', function (d) { return d.Indicator &amp;lt; 0 ?  yScale(d.Indicator) - yScale(0) : gHeight - yScale(d.Indicator); })
			
			this.tooltipServiceWrapper.addTooltip(this.svg.selectAll('.bar'), 
            (tooltipEvent: TooltipEventArgs&amp;lt;number&amp;gt;) =&amp;gt; Visual.getTooltipData(tooltipEvent.data),
			(tooltipEvent: TooltipEventArgs&amp;lt;number&amp;gt;) =&amp;gt; null);
				
			shapes.exit().remove();
		}


	public static dataForBarGraph(options: VisualUpdateOptions): BarData[] {
			var resultData: BarData[] = [];
			var rows = options.dataViews[0].table.rows;
		
			for (var i = 0;i &amp;lt; rows.length;i++) {
				var row = rows[i];
					resultData.push({
						Indicator: +row[0].toString(),
						Category: row[2].toString()
						});
				
			}
			return resultData;
		}
		  



	public enumerateObjectInstances(options: EnumerateVisualObjectInstancesOptions): VisualObjectInstanceEnumeration {
		let objectName = options.objectName;
		let objectEnumeration: VisualObjectInstance[] = [];

		switch (objectName) {
			case 'bar':
				objectEnumeration.push({
				  objectName: objectName,
				  properties: {
					bColorPos: this.bColorPos,
					bColorNeg: this.bColorNeg,
				  },
				  selector: null
				});
			break;
		};

		return objectEnumeration; 
	}


	private static getTooltipData(value: any): VisualTooltipDataItem[] {
		return [{
			displayName: value.category,
			value: value.value.toString(),
			color: value.color
		}];
	}


	public destroy(): void {
		//TODO: Perform any cleanup tasks here
	}
	  
}
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2018 09:42:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/350551#M10411</guid>
      <dc:creator>satishr</dc:creator>
      <dc:date>2018-02-02T09:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: Custom visual tooltip service not working</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/351532#M10450</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/17823"&gt;@v-viig&lt;/a&gt;&amp;nbsp;I have posted my code. Can you please help me with this? I have a tight deadline to deliver this custom visual to my client.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 07:53:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/351532#M10450</guid>
      <dc:creator>satishr</dc:creator>
      <dc:date>2018-02-05T07:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: Custom visual tooltip service not working</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/351552#M10454</link>
      <description>&lt;P&gt;&lt;STRONG&gt;this.host&amp;nbsp;&lt;/STRONG&gt;is undefined in the constructor. Please take host object form &lt;STRONG&gt;options&lt;/STRONG&gt; at contrcutor.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ignat Vilesov,&lt;/P&gt;&lt;P&gt;Software Engineer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;&lt;P&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;&lt;SPAN&gt;pbicvsupport@microsoft.com&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 08:07:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/351552#M10454</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2018-02-05T08:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: Custom visual tooltip service not working</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/351667#M10463</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/17823"&gt;@v-viig&lt;/a&gt;. Added the line &lt;SPAN&gt;this&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;host&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;options&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;host&lt;/SPAN&gt;&lt;SPAN&gt;; in the constructor.&amp;nbsp;&lt;/SPAN&gt;The error is gone now but the tool tip is still &lt;FONT color="#FF0000"&gt;not working &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/FONT&gt; What else am I missing? I can send you the full code files if needed.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2018 11:56:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/351667#M10463</guid>
      <dc:creator>satishr</dc:creator>
      <dc:date>2018-02-05T11:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: Custom visual tooltip service not working</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/352272#M10481</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/50316"&gt;@satishr&lt;/a&gt;&amp;nbsp;yes, please share the full source code.&lt;/P&gt;
&lt;P&gt;You might share the code here or send it to&amp;nbsp;&lt;SPAN&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;pbicvsupport@microsoft.com&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Ignat Vilesov,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Software Engineer&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;&lt;SPAN&gt;pbicvsupport@microsoft.com&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2018 08:32:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/352272#M10481</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2018-02-06T08:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: Custom visual tooltip service not working</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/352285#M10483</link>
      <description>&lt;P&gt;Thanks, &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/17823"&gt;@v-viig&lt;/a&gt;. I have sent a mail with subject "Need help making tool-tip work".&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2018 08:41:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/352285#M10483</guid>
      <dc:creator>satishr</dc:creator>
      <dc:date>2018-02-06T08:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: Custom visual tooltip service not working</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/352369#M10492</link>
      <description>&lt;P&gt;Thank you for sharing. We're going to look into the issue.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Ignat Vilesov,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Software Engineer&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt; color: #333333;"&gt;Microsoft Power BI Custom Visuals&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;A href="mailto:pbicvsupport@microsoft.com" target="_blank"&gt;&lt;SPAN&gt;pbicvsupport@microsoft.com&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2018 09:51:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/352369#M10492</guid>
      <dc:creator>v-viig</dc:creator>
      <dc:date>2018-02-06T09:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: Custom visual tooltip service not working</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/352519#M10499</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/17823"&gt;@v-viig&lt;/a&gt;&amp;nbsp;Thanks for sharing the solution. Below were the changes done in my code.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;this&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;tooltipServiceWrapper&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;addTooltip&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;this&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;svg&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;selectAll&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'.bar'&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;tooltipEvent&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt; &lt;SPAN&gt;TooltipEventArgs&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;BarData&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;) &lt;/SPAN&gt;&lt;SPAN&gt;=&amp;gt;&lt;/SPAN&gt; &lt;SPAN&gt;Visual&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;getTooltipData&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;tooltipEvent&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;data&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;tooltipEvent&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt; &lt;SPAN&gt;TooltipEventArgs&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;BarData&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;) &lt;/SPAN&gt;&lt;SPAN&gt;=&amp;gt;&lt;/SPAN&gt; &lt;SPAN&gt;null&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;BR /&gt;&lt;BR /&gt;private static getTooltipData(data: BarData): VisualTooltipDataItem[] {&lt;BR /&gt;return [{&lt;BR /&gt;displayName: data.Date,&lt;BR /&gt;value: `${data.Indicator}`,&lt;BR /&gt;}];&lt;BR /&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 06 Feb 2018 12:46:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/352519#M10499</guid>
      <dc:creator>satishr</dc:creator>
      <dc:date>2018-02-06T12:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: Custom visual tooltip service not working</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/791113#M20737</link>
      <description>Hello. can you please share your solution? I'm working to add a tooltip page in custom visual. Thank you.</description>
      <pubDate>Thu, 12 Sep 2019 21:46:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/791113#M20737</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-12T21:46:45Z</dc:date>
    </item>
    <item>
      <title>Re: Custom visual tooltip service not working</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/1123659#M23900</link>
      <description>&lt;P&gt;This is what I was missing when the visual would not show up.&lt;/P&gt;</description>
      <pubDate>Wed, 27 May 2020 15:01:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-visual-tooltip-service-not-working/m-p/1123659#M23900</guid>
      <dc:creator>BrentonC</dc:creator>
      <dc:date>2020-05-27T15:01:51Z</dc:date>
    </item>
  </channel>
</rss>

