Im using Devexpress xtraReports my problem is the graph doesnt Display anything Ive set the series Datasource to a datatable.. and the chart too but still I dont get it..I dont know what the problem is..
BTW here's my code
Dim report As New TopItems
Dim ds As New DataSet1
Dim zSQL As New System.Text.StringBuilder
zSQL.AppendLine("SELECT ProductName,ProductCode,COUNT(*) AS OrderCount ")
zSQL.AppendLine("FROM DailyTransactions GROUP BY ProductCode ORDER BY OrderCount DESC ")
zSQL.AppendLine("LIMIT 5")
CreateWaitDialog()
SetWaitDialogCaption("Loading Report Data")
Using SQLconnect As New SQLiteConnection(g_constring)
SQLconnect.Open()
Dim SQLAdapter As New SQLiteDataAdapter(zSQL.ToString, SQLconnect)
SQLAdapter.Fill(ds.TopItems)
End Using
CloseWaitDialog()
report.DataSource = ds
report.ShowPreviewDialog()