Search found 35 matches
- Mon Jul 01, 2013 11:11 am
- Forum: .NET
- Topic: Axis Legend
- Replies: 4
- Views: 6380
Re: Axis Legend
thanks Sandra, the 1st solution made what I want
- Fri Jun 28, 2013 8:29 am
- Forum: .NET
- Topic: Axis Legend
- Replies: 4
- Views: 6380
Re: Axis Legend
Thank for the code, it Works. But i want that the values of the axe that not always is the same as the bars to be with the €
Re: Legend
i have 10 values
Re: Legend
I have probed it and only shows 5 parts
- Thu Jun 27, 2013 7:43 am
- Forum: .NET
- Topic: Axis Legend
- Replies: 4
- Views: 6380
Axis Legend
Hello,
I have a Bar Chart and i wanted to put in the Y axis the values with the € simbol.
Is this posible?
I have a Bar Chart and i wanted to put in the Y axis the values with the € simbol.
Is this posible?
Re: Legend
Hello Sandra,
with this propertie the legend only show 5 of the parts, and the rest dissapears
with this propertie the legend only show 5 of the parts, and the rest dissapears
Re: Gradient
Ok, it Works now.
Thanks for the help.
Thanks for the help.
Legend
Hello, i have a pie chart with the legend at the bottom. What i would like is to put the legend elements in two colums to make it smaller
Re: Gradient
Code: Select all
Dim bar As Steema.TeeChart.Styles.Bar = DirectCast(Chart(0), Steema.TeeChart.Styles.Bar)
Re: Gradient
Maybe i didnt explain correctly. The traslation to vb.net of this part of your code will be: Dim bar As Steema.TeeChart.Styles.Bar = DirectCast(Steema.TeeChart.Chart(0), Steema.TeeChart.Styles.Bar) bar.BarStyle = Steema.TeeChart.Styles.BarStyles.RectGradient bar.Gradient.StartColor = Color.Red bar.G...
Re: Gradient
Ok the code work but what i want is to change the gradient of the bar
Re: Gradient
In your example tou have the chart and you add the series in the function,
I want to have the series in the chart before you call the function
I want to have the series in the chart before you call the function
Re: Gradient
I want a function that passing a chart with the series, it sets the gradient and other features of the chart
Re: Gradient
Sorry, the real code is Steema.TeeChart.Chart Chart1; Steema.TeeChart.Chart Chart2; Steema.TeeChart.Chart Chart3; Steema.TeeChart.Styles.Bar bar1 = new Steema.TeeChart.Styles.Bar(tChart1.Chart); Steema.TeeChart.Styles.Bar bar2 = new Steema.TeeChart.Styles.Bar(tChart2.Chart); Steema.TeeChart.Styles.B...
Re: Gradient
what i want is a function that puts the format to the chart: Steema.TeeChart.Styles.Bar bar1 = new Steema.TeeChart.Styles.Bar(tChart1.Chart); Steema.TeeChart.Styles.Bar bar2 = new Steema.TeeChart.Styles.Bar(tChart2.Chart); Steema.TeeChart.Styles.Bar bar3 = new Steema.TeeChart.Styles.Bar(tChart3.Char...