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

            Random r = new Random();
            for (int i = 0; i < 4; i++)
            {
                Series sr = new Series();
                sr.Gauge.GaugeType = GaugeType.Horizontal;
                sr.Gauge.ShapeType = ShapeType.Blend;
                sr.Name = "Series" + i.ToString();

                for (int x = 0; x < 1; x++)
                {
                    SeriesItem item = new SeriesItem();
                    item.YValue = r.Next(100);
                    item.Name = "item" + i.ToString();

                    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();  


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

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

Gauge Chart using IsShowBorderLine and IsFillGrid  (0) 2009.03.21
Gauge Chart using Thermometer  (0) 2009.03.21
Gauge Chart using Blend  (0) 2009.03.21
Defalut Gauge Chart  (0) 2009.03.21

Posted by 리바이 병장
,


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