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

Full Stacked bar chart - simple2, soft







accutane without birth control

buy accutane pills

female viagra name

female viagra name website female viagra for sale

why does erectile dysfunction happen

buy viagra jelly

where to buy abortion pill

abortion pill online

koop abortuspil online

abortuspil kopen

buy accutane europe

accutane without insurance williamgonzalez.me cheap accutane
디자인 타입 simple2, 팔레트 타입 soft 형으로 그려본 풀 스택형 바 차트




StackedBar chart - gradation, WidthType  Full Stacked bar chart - simple2, soft   


C#
 
SeriesList sList = new SeriesList();
sList.ChartType = ChartType.StackedBar;
sList.StackType = StackType.FullStacked;
sList.IsShow3D = true;
sList.Transparency = 55;

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

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

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

this.hHippoChart1.Titles.Label.ForeColor = Color.SteelBlue;
this.hHippoChart1.DesignType = ChartDesignType.Simple2;
this.hHippoChart1.PaletteType = PaletteType.Soft;
this.hHippoChart1.SeriesListDictionary.Add(sList);
this.hHippoChart1.DrawChart();


VB
 
Dim sList As New. SeriesList()
sList.ChartType = ChartType.StackedBar
sList.StackType = StackType.FullStacked
sList.IsShow3D = True
sList.Transparency = 55

Dim r As New. Random()
For i As Integer = 0 To 3
Dim sr As New. Series()
sr.Column.WidthType = ColumnWidthType.Dynamic
sr.Column.DesignType = AreaDesignType.Dark

For x As Integer = 0 To 4
Dim item As New. SeriesItem()
item.Name = x.ToString()
item.YValue = r.[Next](90)

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

Me.hHippoChart1.Titles.Label.ForeColor = Color.SteelBlue
Me.hHippoChart1.DesignType = ChartDesignType.Simple2
Me.hHippoChart1.PaletteType = PaletteType.Soft
Me.hHippoChart1.SeriesListDictionary.Add(sList)
Me.hHippoChart1.DrawChart()



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

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

helpdesk@hippochart.com





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