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

수동축 - 속성 방식 접근







buy clomid bodybuilding

clomid online read buy clomid pct

buy prednisolone 5mg

buy prednisolone

amoxil suspension

amoxil dosage

buy clomid tablets

clomid uk success rates click here clomid uk buy online

accutane without food

accutane without dermatologist

where to buy abortion pill

order abortion pill online

naltrexone without prescription in uk

buy naltrexone uk

abortion pill online usa

abortion pill over the counter in usa blog.analysisuk.com buy abortion pill

buy zoloft

buy sertraline
수동축을 구성하기 위해서는 SetAxisStep 메소드를 이용한 방식과 속성들을 이용하는 방식이 있습니다.




수동축 - 사용자 정의 스케일 조정  수동축 - 속성 방식 접근  [히포차트 4.3] 데이터가 0과 1만 들어가는 차트 그리기  [팁] 히포차트 4.3 - 자동 수동축을 통해 미세한 축을 표현해보자  


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

sList.AxisFactor.YAxis.IsAutoSetting = false;
sList.AxisFactor.YAxis.MinUnitValue = -500;
sList.AxisFactor.YAxis.MaxUnitValue = 2500;
sList.AxisFactor.YAxis.Interval = 500;

Random r = new Random();
for(int i = 0; i < 2; i++)
{
Series sr = new Series();
sr.Line.LineWidth = 2;
sr.Points.Width = 5;
sr.Points.PointType = PointType.FillRectangle;

if (i == 1)
{
sr.ChartType = ChartType.Column;
}

for(int x = 0; x < 50; x++)
{
SeriesItem item = new SeriesItem();
item.Name = "item" + x.ToString();
item.YValue = r.Next(1000, 2000);

if (i == 1)
{
item.YValue = -1 * r.Next(500);
}

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

this.hHippoChart1.SeriesListDictionary.Add(sList);
this.hHippoChart1.DrawChart();


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

sList.AxisFactor.YAxis.IsAutoSetting = False
sList.AxisFactor.YAxis.MinUnitValue = -500
sList.AxisFactor.YAxis.MaxUnitValue = 2500
sList.AxisFactor.YAxis.Interval = 500

Dim r As New. Random()
Dim i As Integer = 0
While i < 2
Dim sr As New. Series()
sr.Line.LineWidth = 2
sr.Points.Width = 5
sr.Points.PointType = PointType.FillRectangle

If i = 1 Then
sr.ChartType = ChartType.Column
End If

Dim x As Integer = 0
While x < 50
Dim item As New. SeriesItem()
item.Name = "item" + x.ToString()
item.YValue = r.[Next](1000, 2000)

If i = 1 Then
item.YValue = -1 * r.[Next](500)
End If

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.SeriesListDictionary.Add(sList)
Me.hHippoChart1.DrawChart()



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

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

helpdesk@hippochart.com





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