This is a migrated thread and some comments may be shown as answers.

[Solved] Label position "OutsideEnd" does not work

0 Answers 13 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Andy
Top achievements
Rank 1
Andy asked on 11 Apr 2012, 08:08 PM
When I change the "labels" position:"Center", it works fine. But when I use "OutsideEnd", it still behavior like
"InsideEnd" Am I missing anything here?

function onBarChartDataBound(e) {
                   this.options.series = [];
                   $.each(this.dataSource._data, function(){
                       getBarChart().options.series.push({ data: [this.Volume],
                                                           name: this.ProductName,
                                                          color: this.Color,
                                                           type: "column",
                                                            gap: 0.5,
                                                        spacing: 0,
                                                        labels: { color: "white", position: "OutsideEnd", visible: true }
                                                    });
                   })
               }
Tags
General Discussions
Asked by
Andy
Top achievements
Rank 1
Share this question
or