Hello,
I opened Samples Browser source code in debug mode,than I opened XamDataChart-> Editing and Selection -> Data Point Tracking.
when I looked in output debug screen in visual studio I have this message:
System.Windows.Data Error: 1 : Cannot create default converter to perform 'one-way' conversions between types 'System.Windows.Controls.Control' and 'Infragistics.Controls.Charts.Series'. Consider using Converter property of Binding. BindingExpression:Path=Series; DataItem='DataContext' (HashCode=19615117); target element is 'TrackingGrid' (Name=''); target property is 'Series' (type 'Series')System.Windows.Data Error: 1 : Cannot create default converter to perform 'one-way' conversions between types 'System.Windows.Controls.Control' and 'Infragistics.Controls.Charts.Series'. Consider using Converter property of Binding. BindingExpression:Path=Series; DataItem='DataContext' (HashCode=39430079); target element is 'TrackingGrid' (Name=''); target property is 'Series' (type 'Series')......................................................................
Can you help me to remove this message or explain me why it appears because I would use your example.Thank you.
Regards
Hello Anis,
Thank you for your post. I have been looking into it and I created a sample project for you using the code from the Samples Browser with a little modification. Basically I changed the type of the TrackingGrid’s Series Property to Control instead of Series. This way no Binding errors occurs. Please let me know if this helps you or you need further assistance on this matter.
Looking forward for your reply.
Hi,
I would like to know if you can put the tooltip with the interpolated on your example.
Would you be able to do that?
Thanks,
-Joe
Basically, this is the way you do it in XAML
<ig:XamDataChart.Series>
<ig:ItemToolTipLayer UseInterpolation="True" TransitionDuration="0:00:00.1"/> </ig:XamDataChart.Series>
In your zip example provided, would you be able to do it programmatically.