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

범례 헤더







female viagra pills

where to buy female viagra pill blog.zycon.com female viagra drops

tamoxifen uk

buy tamoxifen citrate uk tfswhisperer.com tamoxifen citrate
범례 헤더에 사용자 임의 내용을 구성할 수 있고, 헤더를 라벨을 통해 범례의 길이를 조절합니다.




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


C#
 
SeriesList sList = new SeriesList();
sList.ChartType = ChartType.Circular;
sList.IsShow3D = true;
sList.Transparency = 55;

Random r = new Random();
for(int i = 0; i < 4; i++)
{
Series sr = new Series();
sr.Column.DesignType = AreaDesignType.Dark;

sr.Name = "Series" + i.ToString();

for(int x = 0; x < 4; x++)
{
SeriesItem item = new SeriesItem();
item.Name = "item" + x.ToString();
item.YValue = r.Next(200);

sr.items.Add(item);
}

sList.SeriesCollection.Add(sr);
}

this.hHippoChart1.LegendBox.IsShowHeader = true;
this.hHippoChart1.LegendBox.LegendFormat = LegendFormat.Value_Icon_Name;

this.hHippoChart1.LegendBox.Header.ValueLabel.Text = "항목값";
this.hHippoChart1.LegendBox.Header.ValueLabel.Font = new Font("굴림", 9, FontStyle.Bold);

this.hHippoChart1.LegendBox.Header.NameLabel.Text = "시리즈이름";
this.hHippoChart1.LegendBox.Header.NameLabel.Font = new Font("굴림", 9, FontStyle.Bold);

this.hHippoChart1.LegendBox.Header.IconLabel.Text = "아이콘";
this.hHippoChart1.LegendBox.Header.IconLabel.Font = new Font("굴림", 9, FontStyle.Bold);

this.hHippoChart1.PaletteType = PaletteType.Shadow;
this.hHippoChart1.SeriesListDictionary.Add(sList);
this.hHippoChart1.DrawChart();


VB
 
Dim sList As New. SeriesList()
sList.ChartType = ChartType.Circular
sList.IsShow3D = True
sList.Transparency = 55

Dim r As New. Random()
Dim i As Integer = 0
While i < 4
Dim sr As New. Series()
sr.Column.DesignType = AreaDesignType.Dark

sr.Name = "Series" + i.ToString()

Dim x As Integer = 0
While x < 4
Dim item As New. SeriesItem()
item.Name = "item" + x.ToString()
item.YValue = r.[Next](200)

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.LegendBox.IsShowHeader = True
Me.hHippoChart1.LegendBox.LegendFormat = LegendFormat.Value_Icon_Name

Me.hHippoChart1.LegendBox.Header.ValueLabel.Text = "항목값"
Me.hHippoChart1.LegendBox.Header.ValueLabel.Font = New Font("굴림", 9, FontStyle.Bold)

Me.hHippoChart1.LegendBox.Header.NameLabel.Text = "시리즈이름"
Me.hHippoChart1.LegendBox.Header.NameLabel.Font = New Font("굴림", 9, FontStyle.Bold)

Me.hHippoChart1.LegendBox.Header.IconLabel.Text = "아이콘"
Me.hHippoChart1.LegendBox.Header.IconLabel.Font = New Font("굴림", 9, FontStyle.Bold)

Me.hHippoChart1.PaletteType = PaletteType.Shadow
Me.hHippoChart1.SeriesListDictionary.Add(sList)
Me.hHippoChart1.DrawChart()



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

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

helpdesk@hippochart.com





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