tags:

views:

66

answers:

1

Hi... I want to know how to display value(in percent) on the bar seriesalt text

Thanks..

+6  A: 

Use ArrowLength properties of marks and give negative value. For example:

TheChart.Series[0].Marks.ArrowLength := -60;
TheChart.Series[1].Marks.ArrowLength := -60;
TheChart.Series[2].Marks.ArrowLength := -60;

alt text

SimaWB