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

풍선도움말 - 시리즈아이템 코멘트 달기







abortion pill

abortion pill kit charamin.jp abortion pill

amitriptyline 25mg

amitriptyline 10mg hutoncallsme.azurewebsites.net buy amitriptyline
Balloon 객체를 통해 시리즈아이템에 세부 설명을 달 수 있습니다.




풍선도움말 - 시리즈아이템 코멘트 달기  풍선도움말 - 디자인하기  풍선도움말 - 수치표현하기  


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 < 2; x++)
{
SeriesItem item = new SeriesItem();
item.Name = "item" + x.ToString();
item.YValue = r.Next(999);

if (x == 0)
{
item.Balloon = new Balloon();
item.Balloon.Label.Text = "히포차트는 \r\n풍선도움말 기능으로 \r\n데이터에 다양한 \r\n코멘트를 달 수 \r\n있습니다. ";
}

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

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


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

Dim r As New. Random()
Dim i As Integer = 0
While i < 1
Dim sr As New. Series()

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

If x = 0 Then
item.Balloon = New Balloon()
item.Balloon.Label.Text = "히포차트는 " & vbCr & vbLf & "풍선도움말 기능으로 " & vbCr & vbLf & "데이터에 다양한 " & vbCr & vbLf & "코멘트를 달 수 " & vbCr & vbLf & "있습니다. "
End If

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.PaletteType = PaletteType.Classic
Me.hHippoChart1.SeriesListDictionary.Add(sList)
Me.hHippoChart1.DrawChart()



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

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

helpdesk@hippochart.com





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