I have a chart control that is displaying columns with values on top (series with labels). Those values come from the database and they are already in the percentage format (i.e.: displaying 12.54 not 0.1254)

I want to add the "%" next to the numbers.

when I try to use the "LabelFormat" property and set it to "P2" i get the numbers like this:

1254.00% !!

I think the P2 is doing some calculations!

I just want to add the "%" symbol next to the number. that's it

can anyone help?

link|improve this question
feedback

2 Answers

The "P" format specifier takes a number and considers it as a percent, so 1 will be translated to 100%. Can't you return the percentage like 0.1254?

link|improve this answer
no, I tried that but it's not working properly. since the Y Axis is from 0 to 100 .. all the values then were on the X Axis since they did not exceed 1 ! – Yousi Nov 13 '11 at 8:42
I tried doing something else .. instead of using "LabelFormat" .. i just used "Label" property and set the value to "#PERCENT" .. this worked fine, but i noticed that the numbers changed ! instead of displaying 8.48% , I get 13.99% ! – Yousi Nov 13 '11 at 8:46
feedback
up vote 0 down vote accepted

Ok, I found the answer myself! thanks for everything ..

Here is the answer:

in order to just display "%" next to the number, just do the following:

Chart1.Series["MySeries"].Label = "#VALY"+"%";

OR (for the Y Axis for example:)

Chart1.ChartAreas[0].AxisY.LabelStyle.Format = "{#}%";

This worked fine for me!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.