score:2

Accepted answer

in general it's not supported. however, you can try to achieve that by manually translating legend group to the right side. you will need to update that position on each chart resize, or whenever legend is redrawn.

here is sample for it: http://jsfiddle.net/d746v/10/

                this.legend.allitems[0].legendgroup.attr({ // 0 - first series, 1 - second series etc.
                    translatex: 320
                });

so for each item you will need to calculate proper position.

score:0

you could try: text-align: right; instead of "align";
or you could try to specify the element in css further like:

div .example p {

}

i hope this solves your problem. good luck!

http://www.w3schools.com/cssref/pr_text_text-align.asp


Related Query

More Query from same tag