C#

 
            SeriesList sList = new SeriesList();
            sList.ChartType = ChartType.Scatter;

            Random r = new Random();
            for (int i = 0; i < 4; i++)
            {
                Series sr = new Series();

                if (i == 0)
                {
                    sr.Points.PointType = PointType.Image;
                    sr.Points.PointImage = @"C:\Documents and Settings\Administrator\My Documents\My Pictures\star.gif";
                }
                if (i == 1)
                {
                    sr.Points.PointType = PointType.Image;
                    sr.Points.PointImage = @"C:\Documents and Settings\Administrator\My Documents\My Pictures\VtmMenuAlert.gif";
                }
                if (i == 2)
                {
                    sr.Points.PointType = PointType.Image;
                    sr.Points.PointImage = @"C:\Documents and Settings\Administrator\My Documents\My Pictures\++.gif";
                }
                if (i == 3)
                {
                    sr.Points.PointType = PointType.Image;
                    sr.Points.PointImage = @"C:\Documents and Settings\Administrator\My Documents\My Pictures\VtmMenuNormal.gif";
                }

                for (int x = 0; x < 5; x++)
                {
                    SeriesItem item = new SeriesItem();
                    item.YValue = r.Next(100);

                    sr.items.Add(item);
                }
                sList.SeriesCollection.Add(sr);
            }

            this.hHippoChart1.Titles.Label.ForeColor = Color.SteelBlue;
            this.hHippoChart1.DesignType = ChartDesignType.Simple;
            this.hHippoChart1.SeriesListDictionary.Add(sList);
            this.hHippoChart1.DrawChart();  


VB
 
Dim sList As SeriesList = New SeriesList
sList.ChartType 
ChartType.Scatter
Dim As Random = New Random
Dim As Integer = 0
Do While (i < 4)
    
Dim sr As Series = New Series
    
If (i 0Then
        
sr.Points.PointType PointType.Image
        sr.Points.PointImage 
"C:\Documents and Settings\Administrator\My Documents\My Pictures\star.gif"
    
End If
    If 
(i 1Then
        
sr.Points.PointType PointType.Image
        sr.Points.PointImage 
"C:\Documents and Settings\Administrator\My Documents\My Pictures\VtmMenuAlert.gif"
    
End If
    If 
(i 2Then
        
sr.Points.PointType PointType.Image
        sr.Points.PointImage 
"C:\Documents and Settings\Administrator\My Documents\My Pictures\++.gif"
    
End If
    If 
(i 3Then
        
sr.Points.PointType PointType.Image
        sr.Points.PointImage 
"C:\Documents and Settings\Administrator\My Documents\My Pictures\VtmMenuNormal.gif"
    
End If
    Dim 
As Integer = 0
    
Do While (x < 5)
        
Dim item As SeriesItem = New SeriesItem
        item.YValue 
r.Next(100)
        sr.items.Add(item)
        x 
(x + 1)
    
Loop
    
sList.SeriesCollection.Add(sr)
    i 
(i + 1)
Loop
Me
.hHippoChart1.Titles.Label.ForeColor Color.SteelBlue
Me.hHippoChart1.DesignType ChartDesignType.Simple
Me.hHippoChart1.SeriesListDictionary.Add(sList)
Me.hHippoChart1.DrawChart

사업자 정보 표시
히포차트 | 하영대 | 경기도 성남시 수정구 복정동 631-5 401 | 사업자 등록번호 : 129-34-55719 | TEL : 031-751-6673 | Mail : hippochart@gmail.com | 통신판매신고번호 : 제 2010-경기성남-1203호 | 사이버몰의 이용약관 바로가기

'Chart Type > Scatter' 카테고리의 다른 글

Scatter plot chart using Number type  (0) 2009.04.07
Default scatter plot chart  (2) 2009.04.07

Posted by 리바이 병장
,


/* 다음 웹인사이드 로그 분석*/