Search found 65 matches
- Mon Oct 31, 2011 3:48 pm
- Forum: .NET
- Topic: Pie Charts
- Replies: 13
- Views: 36030
Re: Pie Charts
Thanks, all worked, hopefully that is all
- Mon Oct 31, 2011 9:29 am
- Forum: .NET
- Topic: Pie Charts
- Replies: 13
- Views: 36030
Re: Pie Charts
Thank you, that worked, any ideas how I can do the % symbol in the legend, ie 94% white 0% Mixed 1% Asian etc If I try to add the % in the following line it fails to build pie.Add(Convert.ToInt32(ethnicperc1), "White", Color.FromArgb(49, 151, 101)); ie pie.Add(Convert.ToInt32(ethnicperc1) & "%", "Wh...
- Fri Oct 28, 2011 10:41 am
- Forum: .NET
- Topic: Pie Charts
- Replies: 13
- Views: 36030
Re: Pie Charts
The % symbol I require on the legend next the figures, but not on the graph.
I have created in Phtoshop what I require the pie to look like
I have created in Phtoshop what I require the pie to look like
- Thu Oct 27, 2011 12:53 pm
- Forum: .NET
- Topic: Pie Charts
- Replies: 13
- Views: 36030
Re: Pie Charts
Hi adding the styles has made no difference, my code is:- Steema.TeeChart.TChart tChart2 = new Steema.TeeChart.TChart(); Steema.TeeChart.Styles.Pie pie = new Steema.TeeChart.Styles.Pie(tChart2.Chart); tChart2.Legend.Visible = true; tChart2.Header.Text = ""; tChart2.Chart.Panel.Color = System.Drawing...
- Wed Oct 26, 2011 1:57 pm
- Forum: .NET
- Topic: Pie Charts
- Replies: 13
- Views: 36030
Pie Charts
2 Questions on the pie charge sample attached, 1. how can I add the % symbol next to the figure My code is:- pie.Add(Convert.ToInt32(ethnicperc1), "White", Color.FromArgb(49, 151, 101)); pie.Add(Convert.ToInt32(ethnicperc2), "Mixed", Color.FromArgb(255, 255, 255)); pie.Add(Convert.ToInt32(ethnicperc...
- Fri Oct 21, 2011 8:47 am
- Forum: .NET
- Topic: Pie Chart Values
- Replies: 1
- Views: 4964
Pie Chart Values
My pie chart has numbers on outside and work fine until the a few sections are few small, as attached. Is this anyway to say move the numbers futher out and have lines to the relevant pie, or is the an alternative solution.
- Wed Oct 19, 2011 11:52 am
- Forum: .NET
- Topic: Pie Charts
- Replies: 6
- Views: 11768
Re: Pie Charts
Thanks, that is what I needed
- Tue Oct 18, 2011 2:26 pm
- Forum: .NET
- Topic: Pie Charts
- Replies: 6
- Views: 11768
Re: Pie Charts
We need the graph rotating around 90 degress, sample attached of what I am trying to produce
Re: Axis
Thanks, this is what I wanted
Re: Axis
Thanks, this only does the vertical lines, I also need to loose the horizontal, have tried several option, none of which have worked
- Fri Oct 14, 2011 1:32 pm
- Forum: .NET
- Topic: Pie Charts
- Replies: 6
- Views: 11768
Re: Pie Charts
I have treid changing the order, but seem unable to get the white to be at the top, also what about the box and font size of the labels next to the pie Steema.TeeChart.TChart tChart2 = new Steema.TeeChart.TChart(); Steema.TeeChart.Styles.Pie pie = new Steema.TeeChart.Styles.Pie(tChart2.Chart); tChar...
Axis
I want to remove the grid lines, which if I make the Axis.Vsible = false does this, but I still require the scale on the left hand side which is lost when I turn make visible = false
- Fri Oct 14, 2011 1:16 pm
- Forum: .NET
- Topic: Legend Different Colour
- Replies: 2
- Views: 6292
Re: Legend Different Colour
That worked thanks
- Thu Oct 13, 2011 12:32 pm
- Forum: .NET
- Topic: Pie Charts
- Replies: 6
- Views: 11768
Pie Charts
Some queries on the attached Pie Charrt:-
On the numbers around the graph, require no box and the font to bigger
How do I force the order, We need the white to be top and then clockwise with the others
On the numbers around the graph, require no box and the font to bigger
How do I force the order, We need the white to be top and then clockwise with the others
- Thu Oct 13, 2011 12:28 pm
- Forum: .NET
- Topic: Legend Different Colour
- Replies: 2
- Views: 6292
Legend Different Colour
I have a bar graoh and specified the colours like so:- bar1.Add(age1m, "Under 20", Color.Green); bar1.Marks.Visible = false; bar2.Add(age1f, "Under 20", Color.Orange); bar2.Marks.Visible = false; bar1.Add(age2m, "20-29", Color.Green); bar1.Marks.Visible = false; bar2.Add(age2f, "20-29", Color.Orange...