SeriesList sList = new SeriesList();
sList.AxisFactor.BackColor = Color.White;
sList.GraphArea.Grid.IsBackGridColor = false;
sList.AxisFactor.YAxis.IsAxisVerticalRotate = true;
sList.AxisFactor.YAxis.TitleLabel.Text = "ABCDEFGHIJKLMN";
SeriesList sList2 = new SeriesList();
sList2.AxisFactor.BackColor = Color.White;
sList2.GraphArea.Grid.IsBackGridColor = false;
sList2.AxisFactor.YAxis.IsAxisVerticalRotate = true;
sList2.AxisFactor.YAxis.TitleLabel.Text = "OPGRSTUVWXYZ";
SeriesList sList3 = new SeriesList();
sList3.AxisFactor.BackColor = Color.White;
sList3.GraphArea.Grid.IsBackGridColor = false;
sList3.AxisFactor.YAxis.IsAxisVerticalRotate = true;
sList3.AxisFactor.YAxis.TitleLabel.Text = "OPGRSTUVWXYZ";
Random r = new Random();
for(int i = 0; i < 1; i++)
{
Series sr = new Series();
sr.Name = "Series" + i.ToString();
for(int x = 0; x < 10; x++)
{
SeriesItem item = new SeriesItem();
item.XValue = x;
item.Name = x.ToString();
item.YValue = r.Next(10) * 56;
sr.items.Add(item);
}
sList.SeriesCollection.Add(sr);
sList2.SeriesCollection.Add(sr);
sList3.SeriesCollection.Add(sr);
}
this.hHippoChart1.SeriesListDictionary.Add(sList);
this.hHippoChart1.SeriesListDictionary.Add(sList2);
this.hHippoChart1.SeriesListDictionary.Add(sList3);
this.hHippoChart1.DrawChart();
Dim sList As New. SeriesList()
sList.AxisFactor.BackColor = Color.White
sList.GraphArea.Grid.IsBackGridColor = False
sList.AxisFactor.YAxis.IsAxisVerticalRotate = True
sList.AxisFactor.YAxis.TitleLabel.Text = "ABCDEFGHIJKLMN"
Dim sList2 As New. SeriesList()
sList2.AxisFactor.BackColor = Color.White
sList2.GraphArea.Grid.IsBackGridColor = False
sList2.AxisFactor.YAxis.IsAxisVerticalRotate = True
sList2.AxisFactor.YAxis.TitleLabel.Text = "OPGRSTUVWXYZ"
Dim sList3 As New. SeriesList()
sList3.AxisFactor.BackColor = Color.White
sList3.GraphArea.Grid.IsBackGridColor = False
sList3.AxisFactor.YAxis.IsAxisVerticalRotate = True
sList3.AxisFactor.YAxis.TitleLabel.Text = "OPGRSTUVWXYZ"
Dim r As New. Random()
For i As Integer = 0 To 0
Dim sr As New. Series()
sr.Name = "Series" + i.ToString()
For x As Integer = 0 To 9
Dim item As New. SeriesItem()
item.XValue = x
item.Name = x.ToString()
item.YValue = r.[Next](10) * 56
sr.items.Add(item)
Next
sList.SeriesCollection.Add(sr)
sList2.SeriesCollection.Add(sr)
sList3.SeriesCollection.Add(sr)
Next
Me.hHippoChart1.SeriesListDictionary.Add(sList)
Me.hHippoChart1.SeriesListDictionary.Add(sList2)
Me.hHippoChart1.SeriesListDictionary.Add(sList3)
Me.hHippoChart1.DrawChart()