Combining Yousi Solution with Alex Z Solution
If your value is in decimal format, for example. 0.14 = 14%, then use this markup:
<ChartAreas> <asp:ChartArea Name="ChartArea1"> <AxisY > <LabelStyle Format="{0:p}" /> </AxisY> </asp:ChartArea> </ChartAreas>
If your value is the actual number you would like to see, just with% after using it:
<ChartAreas> <asp:ChartArea Name="ChartArea1"> <AxisY > <LabelStyle Format="{#}%" /> </AxisY> </asp:ChartArea> </ChartAreas>
i.e. If you try the first block of code above and see values, for example, 1000%, where you expect 10% to use the second.
source share