Click here to Skip to main content
16,014,677 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I've got the following piece of code but it's not giving me any output.

VB
Dim objc As New DistrictPreviousTrends
            Dim objlist As New List(Of DistrictPreviousTrends)

            objlist = objc.GetTrends()

            Chart3.DataBindCrossTable(objlist, "District_Name", "AcademicYear", "Rate", "")
            For Each item In Chart3.Series
                item.ChartType = SeriesChartType.Area
                item.IsValueShownAsLabel = True
            Next
Posted

1 solution

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900