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

[히포차트 4.2] 범례 글자 폰트 조절 지원







amoxicillin uk

amoxicillin online click buy antibiotic online

clomid london drugs

buy clomid bodybuilding

naltrexone buy

buy naltrexone online

Amoxicillin 500 mg Capsules

amoxicillin 500mg francescocutolo.it amoxicillin online

antibiotic without prescription

amoxicillin prescription no insurance

abortion pill online philippines

pills for abortion

buy antidepressant online

buy sertraline
히포차트 4.2에서는 범례의 폰트를 설정할 수 있는 속성이 추가되었습니다.




범례 - LegendFormat   범례 헤더  범례 - 멀티시리즈리스트 구성과 항목세부조정  범례 - 이너레전드(inner legend)  범례 사용자 정의 구성  히포차트 4.1 - 외부 범례 위치 조정하기  [히포차트 4.2] 범례 글자 폰트 조절 지원   범례 이름이 너무 길때 넓이 설정하기  히포차트 4.3 - 이너 레전드 (내부 범례) , 배경색  


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

Random r = new Random();
for(int i = 0; i < 5; i++)
{
Series sr = new Series();
sr.Points.Width = 6;
sr.Line.LineWidth = 4;
sr.LineNullType = LineNullType.Dash;
sr.LineNullColor = Color.Gray;

for(int x = 0; x < 15; x++)
{
SeriesItem item = new SeriesItem();
item.Name = x.ToString();
item.YValue = r.Next(28, 85);

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

this.hHippoChart1.LegendBox.Label = new Hippo.Label();
this.hHippoChart1.LegendBox.Label.Font = new Font("굴림", 11, FontStyle.Italic);
this.hHippoChart1.LegendBox.Header.NameLabel.Text = "fkdjsaflkjdffd";
this.hHippoChart1.SeriesListDictionary.Add(sList);
this.hHippoChart1.DrawChart();


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

Dim r As New. Random()
For i As Integer = 0 To 4
Dim sr As New. Series()
sr.Points.Width = 6
sr.Line.LineWidth = 4
sr.LineNullType = LineNullType.Dash
sr.LineNullColor = Color.Gray

For x As Integer = 0 To 14
Dim item As New. SeriesItem()
item.Name = x.ToString()
item.YValue = r.[Next](28, 85)

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

Me.hHippoChart1.LegendBox.Label = New Hippo.Label()
Me.hHippoChart1.LegendBox.Label.Font = New Font("굴림", 11, FontStyle.Italic)
Me.hHippoChart1.LegendBox.Header.NameLabel.Text = "fkdjsaflkjdffd"
Me.hHippoChart1.SeriesListDictionary.Add(sList)
Me.hHippoChart1.DrawChart()


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

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

helpdesk@hippochart.com





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