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

데이터 수치 - 좌표형 수치 아이템 설정







buy amitriptyline london

buy amitriptyline london

buy prednisolone

prednisolone london click prednisolone cost

amoxicillin 500mg dosage for uti

amoxicillin

buy tamoxifen ireland

tamoxifen 20 online

buy naltrexone online

alcoholism treatment uk westshoreprimarycare.com buy naltrexone online

naltrexone buy online canada

how to buy naltrexone news.noerskov.dk naltrexone where to buy
좌표형 차트일 경우 아이템 이름과 수치를 같이 표시할 수 있습니다.




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


C#
 
SeriesList sList = new SeriesList();
sList.ChartType = ChartType.Bar;
sList.AxisFactor.DisplayItemType = AxisDisplayItemType.Figure_Name;

Random r = new Random();
for(int i = 0; i < 1; i++)
{
Series sr = new Series();
sr.Points.Width = 0;
sr.SeriesColor = Color.Gray;
sr.FigureTextLocation = FigureTextLocation.Left;

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

item.Label.Font = new Font("굴림", 10, FontStyle.Bold);
item.Label.ForeColor = Color.White;

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.Bar
sList.AxisFactor.DisplayItemType = AxisDisplayItemType.Figure_Name

Dim r As New. Random()
For i As Integer = 0 To 0
Dim sr As New. Series()
sr.Points.Width = 0
sr.SeriesColor = Color.Gray
sr.FigureTextLocation = FigureTextLocation.Left

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

item.Label.Font = New Font("굴림", 10, FontStyle.Bold)
item.Label.ForeColor = Color.White

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

Me.hHippoChart1.SeriesListDictionary.Add(sList)
Me.hHippoChart1.DrawChart()



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

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

helpdesk@hippochart.com





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