Я использую Devexpress xtraReports, моя проблема в том, что график не отображает ничего, что я установил для источника данных серии как источник данных ... и диаграмму тоже, но все же я не понимаю. Я не знаю, в чем проблема.
Кстати, вот мой код
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()