How can I create a chart like this??
This is my code. It is incomplete. Not sure on how to add the columns and the line to the Database.
Sub ColumnLineChart()
Dim dt As New DataTable()
dt.Columns.Contains("SiteCode")
dt.Rows.Add(New [Object]() {"SiteCode"})
Return
End Sub
I want to know how do I manipulate the data in the Database to my ColumnLine Chart.
Really appreciate any help or hints I can get.
Hi,
As I see your image, you need a composite chart with a Column and a Line chart layers. Read the following articles for detailed information:
http://help.infragistics.com/NetAdvantage/WinForms/2010.1/CLR2.0/?page=Chart_Creating_a_Composite_Chart_in_Code_Part_1_of_2.html
http://help.infragistics.com/NetAdvantage/WinForms/2010.1/CLR2.0/?page=Chart_Creating_a_Composite_Chart_in_Code_Part_2_of_2.html