asp.net charts - show numbers - asp.net

I use a Pie chart. I want it to display the percent or the values on the chart. How can I do this?
It is basic asp.net charting controls
Thanks

Do this:
chart.Series["Default"].Label = "#PERCENT{P2}";
chart.Series["Default"].LegendText = "#VALX";
More info is available here:
How to: Display Percentage Values on a Pie Chart

Related

QT Pie chart labels are overlapping

I am using Donut Chart Breakdown Example to display some dynamic data in QT version 5. But in some case labels are getting overlapped, as in the screenshot given below. I there any way to avoid this?

Cognos pie chart with categories, can they be sectioned by series?

One of the managers here handed me a Cognos report she created and it has a pie chart that looks like this:
She doesn't like that the pie charts are so small and wanted to know if we can so a "section break" so that each pie chart could be on its own. Being very new to Cognos, I have no idea if this is possible. Can such a thing be done?
I found the section / unsection button and that works for now.

Setting up x-axis and y-axis in MSChart

I'm using MSChart in ASP.net to render simple column charts. How can I define and show the names of the x-axis and y-axis on the chart?
You should go through the Microsoft Chart Samples Environment and find it yourself.

How can we create a Radial Pie chart?

How can we create a Radial-Pie-Chart in Flex?
Basically i am trying to create a stacked pie chart.
What should i do to achieve this?
Can we show stacked column chart in a pie?
Thanks
One data visualization API that can be used in Flex is Axiis:
http://www.axiis.org/examples.html
Take a look at this sample to see if this is close to what you are looking for:
http://www.axiis.org/examples/WedgeStackChartExample.html

Show all series' values in stacked bars mouseover (ASP.NET CHART)

I'm using the asp.net Chart control to present a stacked bars chart.
I can create a mouseover custom tooltip using this code:
series.MapAreaAttributes = "onmouseover=\"showTooltip('#VALY');\"";
... which works fine. But I can't seem to find a way to show the rest of the values for the other series in that column.
Example:
I have 2 series (Paid and Unpaid) making up a single column in the chart. When I mouseover any of the series, I want to show both the value of the moused-over series, but also the other series contained in that particular stacked column.
Can anyone point me in the right direction?
We're also using stacked bar charts - we have click through functionality, for users to drill into the data making up each point in each series : we use something like this on each data point.
series.Points[index].MapAreaAttributes = "onclick=\"window.opener.location=this.href;window.opener.focus();return false;\"";

Resources