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()
link|improve this question

1  
What is TopItems is it the chart or an xtrareport based class? – D.. Jan 30 at 14:47
TopItems is in the chart data source ...I leave the xtreport Class datasource to none... – Prince Jan 31 at 15:18
Woah thanks mate.. you just give me a brilliant idea that solved my problem... – Prince Jan 31 at 16:03
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.