Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
799
Positioning Labels on UltraChart.StackColumnChart
posted

Hi,

I'm trying to put on some custom labels on my chart, and I've been succeeding in parts..

 

I've gotten the custom label on the items using

 

Dim cta As Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance

cta = New Infragistics.UltraChart.Resources.Appearance.ChartTextAppearance()

cta.ChartTextFont = New Font("Arial", 7)
cta.ItemFormatString = "<DATA_VALUE_ITEM:00.00>"
cta.FontColor = Color.White
cta.Visible = True
cta.Row = -2
cta.Column = -2
cta.PositionFromRadius = 100
cta.HorizontalAlign = StringAlignment.Center
cta.VerticalAlign = StringAlignment.Near
chrtData.ColumnChart.ChartText.Add(cta)

 

but I want to succeed in adding a total ABOVE the columns.

 

Any ideas? Thanks in advance for the time spent.

 

 

 

What I got..

 

What I Want..

 

Parents Reply Children
No Data