Home 소개       다운로드       온라인 설명서      주식/코인 차트    Q & A     Blog    

2개 이상 축을 추가할 경우







buy prednisolone 5mg tablets uk

cheap prednisolone mytitledirect.com prednisolone pharmacy

buy viagra uk

viagra online click here strongest viagra pill

clomid uk buy online

clomid uk pct recepguzel.com clomid uk prescription

clomid uk pct

clomid london drugs

buy accutane malaysia

accutane without food online accutane without insurance reddit

buy naltrexone online

where can i buy naltrexone online

buy antidepressants uk

buy antidepressants mastercard

buy naltrexone online india

buy naltrexone online read buy naltrexone without prescription

buy naltrexone online india

how to buy naltrexone go naltrexone buy uk

abortion manila

abortion in philippines online abortion in philippines
추가축은 메인 Y축의 반대 방향으로 계속 추가할 수 있습니다.




멀티축 - 스케일에 따른 이중 축 구현법  추가된 축 디자인  2개 이상 축을 추가할 경우  파레토 차트(Pareto Chart)  


C#
 
SeriesList sList = new SeriesList();
sList.ChartType = ChartType.Column;

sList.AxisFactor.AxisItems.Add(new Axis(AxisType.Ytype));
sList.AxisFactor.AxisItems.Add(new Axis(AxisType.Ytype));

sList.AxisFactor.YAxis.SetAxisStep(0, 150, 25);

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

if (i == 1)
{
sr.ChartType = ChartType.Spline;
sr.Points.Width = 10;
sr.Line.LineWidth = 2;
}

if (i == 2)
{
sr.ChartType = ChartType.Line;
sr.Points.Width = 10;
sr.Line.LineWidth = 2;
sr.Points.PointType = PointType.FillRectangle;
}

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

if (i == 1)
{
item.YValue = r.Next(13454);
}

if (i == 2)
{
item.YValue = r.Next(77778787);
}

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

this.hHippoChart1.DesignType = ChartDesignType.Simple2;
this.hHippoChart1.PaletteType = PaletteType.Soft;
this.hHippoChart1.SeriesListDictionary.Add(sList);
this.hHippoChart1.DrawChart();


VB
 
Dim sList As New. SeriesList()
sList.ChartType = ChartType.Column

sList.AxisFactor.AxisItems.Add(New Axis(AxisType.Ytype))
sList.AxisFactor.AxisItems.Add(New Axis(AxisType.Ytype))

sList.AxisFactor.YAxis.SetAxisStep(0, 150, 25)

Dim r As New. Random()
For i As Integer = 0 To 2
Dim sr As New. Series()
sr.AxisIndex = i

If i = 1 Then
sr.ChartType = ChartType.Spline
sr.Points.Width = 10
sr.Line.LineWidth = 2
End If

If i = 2 Then
sr.ChartType = ChartType.Line
sr.Points.Width = 10
sr.Line.LineWidth = 2
sr.Points.PointType = PointType.FillRectangle
End If

For x As Integer = 0 To 5
Dim item As New. SeriesItem()
item.Name = "item" & x.ToString()
item.YValue = r.[Next](99)

If i = 1 Then
item.YValue = r.[Next](13454)
End If

If i = 2 Then
item.YValue = r.[Next](77778787)
End If

sr.items.Add(item)
Next
sList.SeriesCollection.Add(sr)
Next

Me.hHippoChart1.DesignType = ChartDesignType.Simple2
Me.hHippoChart1.PaletteType = PaletteType.Soft
Me.hHippoChart1.SeriesListDictionary.Add(sList)
Me.hHippoChart1.DrawChart()



※ 히포차트 샘플 코드는 버전별로 상이한 결과를 나타낼 수 있습니다.

이 코드 관련 문의 사항은 페이스북 리플을 달아주시거나 아래 이메일로 이 페이지 주소와 함께 문의주세요.

helpdesk@hippochart.com





Copyright © 2009-2024 히포소프트(Hipposoft)   All Rights Reserved.