프로그래밍언어/VB.NET

그래프

부산딸랑이 2013. 9. 20. 22:02

Imports System.Windows.Forms.DataVisualization.Charting

Public Class Form1

    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        Dim table = New DataTable()
        table.Columns.Add("Sales Rep", GetType(String))
        table.Columns.Add("# of Sales", GetType(Integer))
        table.Columns.Add("Date", GetType(Date))

        table.Rows.Add("Anthony", 15, "2012 August 1")
        table.Rows.Add("Mark", 27, "2012 August 1")
        table.Rows.Add("David", 27, "2012 August 1")

        table.Rows.Add("Anthony", 17, "2012 August 2")
        table.Rows.Add("Mark", 30, "2012  August 2")
        table.Rows.Add("David", 14, "2012 August 2")

        table.Rows.Add("Anthony", 12, "2012 August 3")
        table.Rows.Add("Mark", 50, "2012  August 3")
        table.Rows.Add("David", 8, "2012 August 3")
        Chart1.Series.RemoveAt(0)
        Chart1.DataBindCrossTable(table.DefaultView, "Sales Rep", "Date", "# of Sales", "")


        For Each s In Chart1.Series
            s.ChartType = SeriesChartType.Line
        Next

    End Sub
End Class

'프로그래밍언어 > VB.NET' 카테고리의 다른 글

ManualResetEvent  (0) 2013.09.24
config  (0) 2013.09.24
비주얼스튜디오2012 최근항목 제거  (0) 2013.09.08
화면 우측하단에 띄우기  (0) 2013.09.04
바탕화면에 이미지 그리기  (0) 2013.09.03