i already try with text and image.. but when i try with chart the tooltip just show message "System.windows.DataTemplate".
can u help me what should i do?
It sounds like you are trying to put a data template in the Tooltip property. This property takes direct UI content, not a datatemplate, if you take the content you currently have in the DataTemplate and assign it directly to the Tooltip property, it should work.
-Graham
Hi Graham,
I am also using similar kind of feature. I am able to display chart as tooltip and i am setting ToolTipService.ShowDuration="60000" property to datapoint, but it is not displaying the tooltip for 60 seconds, it is displaying for only 5 seconds. Following is the code i am using. Please help me in this.
<igCA:Series Name="ColumnChart_DC" Label="Production" ChartType="Column" UseDataTemplate="False" DataPointColor="Different" ToolTipService.ShowDuration="60000">
<igCA:Series.DataPoints> <igCA:DataPoint Name="dt8_DC" Label="Wk8" ToolTipService.ShowDuration="60000"> <igCA:DataPoint.ToolTip> <igCA:XamChart Name="xamC8_DC" Theme="Default" Width="200" Height="200" View3D="false">
<igCA:XamChart.Legend> <igCA:Legend Visible="True"/> </igCA:XamChart.Legend>
<igCA:XamChart.Series> <igCA:Series Name="toolTipChart8_DC" ChartType="Pie" Stroke="Black"> <!--<igCA:Series.Animation> <igCA:Animation Sequential="False"/> </igCA:Series.Animation>--> <igCA:Series.Marker> <igCA:Marker Foreground="#FFFFFFFF"/> </igCA:Series.Marker> </igCA:Series> </igCA:XamChart.Series> </igCA:XamChart> </igCA:DataPoint.ToolTip> </igCA:DataPoint> </igCA:Series.DataPoints> </igCA:Series>
see: http://community.infragistics.com/forums/t/40864.aspx