i’ve found this interesting widget and in particular i’m interested in display chart.
The problem is i can’t find how to. Does anyone know this widget and know how to show a simple chart, and finally, post an example here ?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Check out the graph demo here. In particular, most of the time you instantiate a
Graph2Dobject, add the necessary X and Y axes (usuallyLinearAxiswhich implementsIAxis) and then add whateverIPlotinstances you want to be shown on the graph (e.g. aLinePlotorHistogramPlot)You can look at the AddRandomLinePlot method in that demo to see that in action.