我正在使用Devexpress xtraReports我的问题是图表没有显示我将系列数据源设置为数据表的任何东西..而且图表也是如此但我仍然没有得到它。我不知道问题是什么。
BTW这是我的代码
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()