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

축 수치 표현에서 다른 텍스트 입력하기







amoxil for uti

amoxicillin 500mg cost read here amoxicillin 500mg

buy amitriptyline london

amitriptyline for nerve pain danielharris.co.uk buy amitriptyline online

buy clomid pct

buy clomid tablets

amitriptyline nerve pain

nerve pain amitriptyline

buy lyrica uk

generic lyrica problems click here lyrica online coupon

amitriptyline pain medication

amitriptyline pain relief

buy sertraline 25mg

buy sertraline

abortion pill kit

where to buy abortion pill in usa
그래프의 데이터 수치를 표현할때 기본적으로 해당 값이 표시가 되는데요

- 특별한 다른 글자나 숫자를 입력하고 싶을 경우
- 해당 값에서 함수를 적용하거나 조작하고 싶을 경우

등 원하는 글자로 대체하는 기능입니다.




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


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

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

for(int x = 0; x < 10; x++)
{
SeriesItem item = new SeriesItem();
item.Name = x.ToString();
item.YValue = r.Next(90);
item.IsShowFigureText = true;
item.Label.Font = new Font("arial", 14, FontStyle.Regular);

if (x == 4)
{
item.ItemColor = Color.Red;
item.YValueReplaceText = "important!";
}

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

this.hHippoChart1.LegendBox.Visible = false;
this.hHippoChart1.SeriesListDictionary.Add(sList);
this.hHippoChart1.DrawChart();


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

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

For x As Integer = 0 To 9
Dim item As New. SeriesItem()
item.Name = x.ToString()
item.YValue = r.[Next](90)
item.IsShowFigureText = True
item.Label.Font = New Font("arial", 14, FontStyle.Regular)

If x = 4 Then
item.ItemColor = Color.Red
item.YValueReplaceText = "important!"
End If

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

Me.hHippoChart1.LegendBox.Visible = False
Me.hHippoChart1.SeriesListDictionary.Add(sList)
Me.hHippoChart1.DrawChart()


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

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

helpdesk@hippochart.com





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