I have a Pie chart which shows the contributions by various users in terms of respective % w.r.t the total amount of all.
1. If there are 6-7 users, they are represented well on Pie chart but if there more than that; 7 users they are represented as single/individual entries on Pie Chart and rest of the users are combined into one single entry. How can i avoid that and have single entries/representation for all users on the chart?
3. If i have 50 users whose contributions i which to show in terms of respective % w.r.t the total amount of all; which is a recommended chart for that, as Pie chart appears too cluttered?
4. Also for 50 users if i want to show a pie chart first and later allow the user to switch to another chart, are composite charts the corect option for it? 5. And how do i switch to other chart using composite chart?
Hello,
“OthersCategoryPercent” property of PieChart gets/sets the minimum value, expressed as a decimal percentage, to render as a full slice independently. You can set this property to very small value or 0 in order to avoid combined single entry for small values. You can set this value using following line of code:
this.UltraChart2.PieChart.OthersCategoryPercent = 0.0000000000001;
The following link from our website will give you more details on this:
<http://help.infragistics.com/NetAdvantage/ASPNET/2010.2/?page=Infragistics4.WebUI.UltraWebChart.v10.2~Infragistics.WebUI.UltraWebChart.UltraChart~PieChart.html>
You can scale radius of the Pie Chart by setting “RadiusFactor” property. This poreperty can be set using designer or following line of code can be used: this.UltraChart2.PieChart.RadiusFactor = 110;
The following link from our website will give more details on this:
<http://help.infragistics.com/NetAdvantage/ASPNET/2010.2/?page=Infragistics4.WebUI.UltraWebChart.v10.2~Infragistics.UltraChart.Resources.Appearance.PieChartAppearance~RadiusFactor.html>
You can also use “Doughnut Chart” depending on your business requirement. The samples from our website will give different chart types:
<http://samples.infragistics.com/2010.3/WebFeatureBrowser/Default.aspx>
The related links from following link from our website will give you more details on “composite chart”:
<http://help.infragistics.com/NetAdvantage/ASPNET/2010.2/?page=Chart_Creating_a_Composite_Chart.html>
Hope this helps.
Thanks,
Bhadresh
I am following up to see if you have any further questions with this matter.
Update me if any further assistance is needed.