I want to change position of ValueLabel of my chart. What is the solution?

Also can I change size of that?

link|improve this question

feedback

2 Answers

You can set the position by this way :

<Points>               
      <asp:DataPoint AxisLabel="1" YValues="14" />
      <asp:DataPoint AxisLabel="2" YValues="11" />
      <asp:DataPoint AxisLabel="3" YValues="16" />
      <asp:DataPoint AxisLabel="4" YValues="4" />
      <asp:DataPoint AxisLabel="5" YValues="3" /> 
</Points>
link|improve this answer
feedback

Did you try setting the LabelStyle which is a Custom property. here you can specify the positioning within the predefined ones like

  • Top, Bottom, Right, Left, TopLeft, TopRight, BottomLeft, BottomRight, Center
link|improve this answer
I want to change label style of ValueLabel not AxisLabel. – masoud ramezani Jan 24 at 10:17
Could you give an example, i think i missed something – V4Vendetta Jan 24 at 10:31
I don't want to labels of series have any overlapping. – masoud ramezani Jan 24 at 10:37
feedback

Your Answer

 
or
required, but never shown

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