I have a basic question.
I want to use a line chart 2D.
I have a datarows with 2 columns 'Value ' decimal and Time integer (year)
I have to show time (Year) in x-axis and value (decimal) in Y axis.
how can I achieve this. ?
How can i specify which row should bind with which colum of datarow of a datatable.?
If you plan on using a LineChart, your time column should be of type DateTime. Then, you can follow the example in this link:http://help.infragistics.com/Help/NetAdvantage/NET/2008.2/CLR2.0/html/Chart_Display_Data_on_a_Time_Scale_Axis.html
You can also use a ScatterChart and ConnectWithLines property to true. This way, you can use two numeric axes.