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

다양한 Y축 설정들







female viagra over the counter

buy female viagra andrewwestgarth.co.uk where to buy female viagra pill

amoxicillin without prescription

buy antibiotic online link amoxicillin over the counter

Amoxicillin 500 mg Capsules

amoxicillin 500mg read here buy amoxicillin uk

naltrexone buy online

where can i buy low dose naltrexone

buy amitriptyline online

buy antidepressants visa azpodcast.azurewebsites.net buy antidepressant
축의 4방향 설정, Y축 단위값문자, Y축 문화권정보, 숫자 포맷 설정




다양한 Y축 설정들  X축 간격 설정과 축 Visible  X축의 데이터 타입을 숫자형으로  그리드간격과 X축 간격 조절  긴 x축 라벨 세로로 길게 표현하기  시리즈리스트를 추가하여 아이템 그룹화 하기  [히포차트 4.1] Y축 폰트, X축 폰트 조절하기  [히포차트 4.2] x축, y축 Datetime 타입으로 그리기  [히포차트 4.2] X축 데이터수 많은 경우 라벨 처리  X축을 날짜형(시간) 축으로 그리기  히포차트 4.3 - 달라진 축의 개념과 인버스 기능  히포차트 4.3 - IsZeroStartScale 속성 소개 (기본값 : true)  히포차트 4.3 - IsShorterFigures 속성 소개 (큰 숫자를 짧게 표시)  히포차트 4.3 - 날짜형 y축 (년도형 : year 타입)  히포차트 4.3 - 날짜형 X축 (분기형 : Quarter 타입)  히포차트 4.3 - 날짜형 X축 (주형 : Week 타입)  히포차트 4.3 - 날짜형 X축 (요일형 : DayOfWeek 타입)  히포차트 4.3 - 날짜형 X축 (일자형 : day 타입)  [히포차트 4.3] 소수점 Y축 만들기 (같은 숫자가 반복해서 나오는 이유는?)   Y축 타이틀 방향 전환 속성 IsAxisVerticalRotate   


C#
 
SeriesList sList = new SeriesList();
sList.ChartType = ChartType.Line;
sList.AxisFactor.Orientation = AxisOrientation.TopLeft;
sList.AxisFactor.YAxis.AxisUnitText = "($)";
sList.AxisFactor.YAxis.IsShowUnitText = true;
sList.AxisFactor.YAxis.CultureInfo.Name = "en-US";
sList.AxisFactor.YAxis.FigureFormat = FigureFormat.Currency;

Random r = new Random();
for(int i = 0; i < 1; i++)
{
Series sr = new Series();
sr.Name = "Serie" + i.ToString();
sr.Line.LineWidth = 20;
sr.Points.Width = 0;
sr.Line.EndCap = System.Drawing.Drawing2D.LineCap.ArrowAnchor;

for(int x = 0; x < 5; x++)
{
SeriesItem item = new SeriesItem();
item.Name = "item" + x.ToString();
item.YValue =-222 + r.Next(500);

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

this.hHippoChart1.DesignType = ChartDesignType.Classic;
this.hHippoChart1.SeriesListDictionary.Add(sList);
this.hHippoChart1.DrawChart();


VB
 
Dim sList As New. SeriesList()
sList.ChartType = ChartType.Line
sList.AxisFactor.Orientation = AxisOrientation.TopLeft
sList.AxisFactor.YAxis.AxisUnitText = "($)"
sList.AxisFactor.YAxis.IsShowUnitText = True
sList.AxisFactor.YAxis.CultureInfo.Name = "en-US"
sList.AxisFactor.YAxis.FigureFormat = FigureFormat.Currency

Dim r As New. Random()
For i As Integer = 0 To 0
Dim sr As New. Series()
sr.Name = "Serie" & i.ToString()
sr.Line.LineWidth = 20
sr.Points.Width = 0
sr.Line.EndCap = System.Drawing.Drawing2D.LineCap.ArrowAnchor

For x As Integer = 0 To 4
Dim item As New. SeriesItem()
item.Name = "item" & x.ToString()
item.YValue = -222 + r.[Next](500)

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

Me.hHippoChart1.DesignType = ChartDesignType.Classic
Me.hHippoChart1.SeriesListDictionary.Add(sList)
Me.hHippoChart1.DrawChart()



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

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

helpdesk@hippochart.com





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