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

히포차트 4.3 - 날짜형 X축 (주형 : Week 타입)







amoxicillin 500mg how to take

amoxicillin

amoxil suspension

amoxicillin 500mg for uti blog.encryptedbox.com amoxicillin 500mg uses

buy prednisolone 5mg uk

buy prednisolone

medical abortion

abortion pill redirect abortion pill online usa
히포차트 4.3 버전에서 새롭게 추가된 날짜형 라벨 타입 중 Week (주) 타입 샘플 코드입니다.

DateTimeLabelType

속성을 보시면 2개의 주 타입이 있는데요,

- Week (가장 작은 일자를 시작으로 0주 부터 시작)
- WeekOfYear (1년 중 몇 째 주인지 표시)

입니다.

두 속성의 차이점을 잘 구별하셔서 구현하시기 바랍니다.

샘플코드에는 더불어 특정 날짜에 포인트를 다르게 디자인하는 방법도 추가되어 있습니다.





다양한 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.Scatter;

sList.AxisFactor.BackColor = Color.Ivory;

sList.AxisFactor.XAxis.DataType = AxisDataType.DateTime;

sList.AxisFactor.XAxis.DateTimeLabelType = DateTimeLabelType.Week;
sList.AxisFactor.XAxis.AxisUnitText = "주";

Random r = new Random();
for(int i = 0; i < 1; i++)
{
Series sr = new Series();
sr.Points.Width = 5;

for(int x = 0; x < 30; x++)
{
SeriesItem item = new SeriesItem();
item.Name = x.ToString();
item.XDateTimeValue = DateTime.Parse("2015-01-01").AddDays(x);
item.YValue = r.Next(99);

if (item.XDateTimeValue > DateTime.Parse("2015-01-05") && item.XDateTimeValue < DateTime.Parse("2015-01-21"))
{
item.Points = new Points();
item.Points.Width = 15;
}

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

this.hHippoChart1.Titles.Label.Text = "히포차트 4.3 - 날짜형 X축 (Week 타입)";
this.hHippoChart1.SeriesListDictionary.Add(sList);
this.hHippoChart1.DrawChart();


VB
 

Dim sList As New. SeriesList()
sList.ChartType = ChartType.Scatter

sList.AxisFactor.BackColor = Color.Ivory

sList.AxisFactor.XAxis.DataType = AxisDataType.DateTime

sList.AxisFactor.XAxis.DateTimeLabelType = DateTimeLabelType.Week
sList.AxisFactor.XAxis.AxisUnitText = "주"

Dim r As New. Random()
For i As Integer = 0 To 0
Dim sr As New. Series()
sr.Points.Width = 5

For x As Integer = 0 To 29
Dim item As New. SeriesItem()
item.Name = x.ToString()
item.XDateTimeValue = DateTime.Parse("2015-01-01").AddDays(x)
item.YValue = r.[Next](99)

If item.XDateTimeValue > DateTime.Parse("2015-01-05") AndAlso item.XDateTimeValue < DateTime.Parse("2015-01-21") Then
item.Points = New Points()
item.Points.Width = 15
End If

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

Me.hHippoChart1.Titles.Label.Text = "히포차트 4.3 - 날짜형 X축 (Week 타입)"
Me.hHippoChart1.SeriesListDictionary.Add(sList)
Me.hHippoChart1.DrawChart()



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

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

helpdesk@hippochart.com





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