Hi All,
I want to show my data in 3d view. I have parent child relationship data. My data and chat image is attached and following is my requirement. Please help me with sample application.
Regards
Sufyan
Hello Krasimir,
I need more help of you regarding 3d view,
Please keep in mind i use MVVM. Use your modified sample application of Replied On: 12-21-2012 9:32 AM. The rotation of the chart is difficult with the mouse, can we add arrows to bottom right for rotating right/left and up/down (and right&up, right&down, left&up, left&down) similar to what is shown in attached screen shot and Icons are also attached.
Hello Sufyan,
Thank you for your reply. I am very glad that the issue that you were having is solved. Please let me know if you need any further assistance on the matter.
Sincerely,
Krasimir
Developer Support Engineer
Infragistics
www.infragistics.com/support
Thank you so much Krasimir, my problem is solved.
Thank you for your reply. I have been looking into the appearance that you are looking for and if I understand correctly, you wish to display the Model, the Indicator and the Price in the tooltip of the Series. If this is correct, I can suggest adding a Model property to the class that represents the DataPoints. After doing so you can add a mapping for the ToolTip property in the DataMappings of the Series and set the mapping property to ‘.’, in order to set the whole object as content of the tooltip. You can do that as follows:
series.DataMapping = "Value=Price;Label=Indicator;ToolTip=.";
By doing so the Content of the Tooltip of the columns will be the object of the data point. Since the tool tip has a content presenter in its template, it will display a simple TextBlock with the ToString method of the DataPoint objet. To show all the information in the tool tip (the Model, the Indicator and the Price properties) you can create a style for the ToolTip and change its Template to show the data. I have modified the sample application that I have attached with my previous reply, in order to show how you can implement this approach.
Please let me know if you need any further assistance on the matter.
Thanks for your reply i already do that regarding the coloring of the series of the XamChart, and its working fine. Is it possible to show tooltip of series with Legend and XAxis and YAxis Values. If it possible i shall be very thankful to you for this favor.