SeriesList sList = new SeriesList();
sList.ChartType = ChartType.Circular;
sList.IsShow3D = true;
sList.Transparency = 55;
Random r = new Random();
for(int i = 0; i < 4; i++)
{
Series sr = new Series();
sr.Column.DesignType = AreaDesignType.Dark;
sr.Name = "Series" + i.ToString();
for(int x = 0; x < 4; x++)
{
SeriesItem item = new SeriesItem();
item.Name = "item" + x.ToString();
item.YValue = r.Next(200);
sr.items.Add(item);
}
sList.SeriesCollection.Add(sr);
}
this.hHippoChart1.LegendBox.IsShowHeader = true;
this.hHippoChart1.LegendBox.LegendFormat = LegendFormat.Value_Icon_Name;
this.hHippoChart1.LegendBox.Header.ValueLabel.Text = "항목값";
this.hHippoChart1.LegendBox.Header.ValueLabel.Font = new Font("굴림", 9, FontStyle.Bold);
this.hHippoChart1.LegendBox.Header.NameLabel.Text = "시리즈이름";
this.hHippoChart1.LegendBox.Header.NameLabel.Font = new Font("굴림", 9, FontStyle.Bold);
this.hHippoChart1.LegendBox.Header.IconLabel.Text = "아이콘";
this.hHippoChart1.LegendBox.Header.IconLabel.Font = new Font("굴림", 9, FontStyle.Bold);
this.hHippoChart1.PaletteType = PaletteType.Shadow;
this.hHippoChart1.SeriesListDictionary.Add(sList);
this.hHippoChart1.DrawChart();
Dim sList As New. SeriesList()
sList.ChartType = ChartType.Circular
sList.IsShow3D = True
sList.Transparency = 55
Dim r As New. Random()
Dim i As Integer = 0
While i < 4
Dim sr As New. Series()
sr.Column.DesignType = AreaDesignType.Dark
sr.Name = "Series" + i.ToString()
Dim x As Integer = 0
While x < 4
Dim item As New. SeriesItem()
item.Name = "item" + x.ToString()
item.YValue = r.[Next](200)
sr.items.Add(item)
System.Math.Max(System.Threading.Interlocked.Increment(x),x - 1)
End While
sList.SeriesCollection.Add(sr)
System.Math.Max(System.Threading.Interlocked.Increment(i),i - 1)
End While
Me.hHippoChart1.LegendBox.IsShowHeader = True
Me.hHippoChart1.LegendBox.LegendFormat = LegendFormat.Value_Icon_Name
Me.hHippoChart1.LegendBox.Header.ValueLabel.Text = "항목값"
Me.hHippoChart1.LegendBox.Header.ValueLabel.Font = New Font("굴림", 9, FontStyle.Bold)
Me.hHippoChart1.LegendBox.Header.NameLabel.Text = "시리즈이름"
Me.hHippoChart1.LegendBox.Header.NameLabel.Font = New Font("굴림", 9, FontStyle.Bold)
Me.hHippoChart1.LegendBox.Header.IconLabel.Text = "아이콘"
Me.hHippoChart1.LegendBox.Header.IconLabel.Font = New Font("굴림", 9, FontStyle.Bold)
Me.hHippoChart1.PaletteType = PaletteType.Shadow
Me.hHippoChart1.SeriesListDictionary.Add(sList)
Me.hHippoChart1.DrawChart()