The picture below illustrates what I\'m trying to accomplish:
UPD. As you
You can approximate this with CSS. Create a class:
td.rt-ctr {
text-align:right;
padding-right:33%;
}
Then call the class in your chart:
Item 1
100.25
Item 2
99.75
Depending upon the width of the column, chart and longest data entry, you may need to adjust the percentage in the CSS. This approach isn't perfect, but it is responsive and is a pure CSS method.