Chart Type/Radar
Radar chart using Polygon and RadarPointType.Area
리바이 병장
2009. 3. 28. 14:16
SeriesList sList = new SeriesList();
sList.ChartType = ChartType.Radar;
sList.Radar.ShapeType = RadarShapeType.Polygon1;
Random r = new Random();
for (int i = 0; i < 2; i++)
{
Series sr = new Series();
sr.Points.PointType = PointType.FillRectangle;
sr.RadarType = RadarPointType.Area;
sr.Transparency = 55;
for (int x = 0; x < 9; x++)
{
SeriesItem item = new SeriesItem();
item.YValue = r.Next(500);
item.Name = "R" + x.ToString();
sr.items.Add(item);
}
sList.SeriesCollection.Add(sr);
}
this.hHippoChart2.LegendBox.Visible = false;
this.hHippoChart2.Titles.Label.ForeColor = Color.SteelBlue;
this.hHippoChart2.DesignType = ChartDesignType.Simple;
this.hHippoChart2.SeriesListDictionary.Add(sList);
this.hHippoChart2.DrawChart();
|
사업자 정보 표시펼치기/접기
히포차트 | 하영대 | 경기도 성남시 수정구 복정동 631-5 401 | 사업자 등록번호 : 129-34-55719 | TEL : 031-751-6673 | Mail : hippochart@gmail.com | 통신판매신고번호 : 제 2010-경기성남-1203호 | 사이버몰의 이용약관
바로가기