Greetings,
I have 2 data tables. Both of them have 2 columns. The first column is in common which is " Name" column. The second column is "Numerical Values" (each data table has its own different values in the second column). I need to make comparison between these two data tables via RadChartView and LineSeries. So the horizontal axes should represent the common column (Names), and the vertical axes should represent 2 LineSeries Diagram, each corresponding to a data table.
I use the code below to draw diagram of one data table :
Dim
lineSeria
As
New
LineSeries()
lineSeria.DataSource = dataTable1
lineSeria.ValueMember =
"Values"
lineSeria.CategoryMember =
"Names"
ChartView.Series.Add(lineSeria)
'ChartView is a RadChartView
How can I use RadchartView's Multiple axes mode to draw the second diagram along with the first one together for making a comparison ?
P.S I've read about Multi Axes mode in documentations. But my case is different as I use a data table as LineSeries datasource.
Thanks in advance.