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

데이터 수치 폰트 조절







clomid uk pct

buy clomid tablets

abortion pill over the counter in usa

abortion pill online usa click here medical abortion
시리즈아이템 레벨에서 수치표시 여부와 라벨의 폰트를 조절할 수 있습니다.




데이터 수치 폰트 조절  데이터 수치 위치 조정  파이 데이터 수치 표시 내용 선택  데이터 수치 - 좌표형 수치 아이템 설정  축 수치 표현에서 다른 텍스트 입력하기  


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

sList.AxisFactor.YAxis.TitleLabel.Text = "y axis title";
sList.AxisFactor.XAxis.TitleLabel.Text = "x axis title";

Random r = new Random();
for(int i = 0; i < 1; i++)
{
Series sr = new Series();
sr.AreaType = AreaType.LineArea;
sr.Name = "Serie" + i.ToString();

for(int x = 0; x < 5; x++)
{
SeriesItem item = new SeriesItem();
item.Name = "item" + x.ToString();
item.YValue = r.Next(50);
item.IsShowFigureText = true;

item.Label.Font = new Font("Tahoma", 11, FontStyle.Bold);

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.Column

sList.AxisFactor.YAxis.TitleLabel.Text = "y axis title"
sList.AxisFactor.XAxis.TitleLabel.Text = "x axis title"

Dim r As New. Random()
For i As Integer = 0 To 0
Dim sr As New. Series()
sr.AreaType = AreaType.LineArea
sr.Name = "Serie" & i.ToString()

For x As Integer = 0 To 4
Dim item As New. SeriesItem()
item.Name = "item" & x.ToString()
item.YValue = r.[Next](50)
item.IsShowFigureText = True

item.Label.Font = New Font("Tahoma", 11, FontStyle.Bold)

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



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

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

helpdesk@hippochart.com





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