Opened 13 years ago
Closed 13 years ago
#5274 closed defect (fixed)
Axis labels not being cleaned up
Reported by: | haysmark | Owned by: | Eugene Lazutkin |
---|---|---|---|
Priority: | high | Milestone: | 1.0.2 |
Component: | Charting | Version: | 0.9 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
If you try to update an axis by adding the axis again to the chart, its labels are not properly destroyed.
Attachments (2)
Change History (6)
Changed 13 years ago by
Attachment: | test_chart2d_updating.html added |
---|
comment:1 Changed 13 years ago by
Here is a dojo.query hack I am using for now. You could implement it into the widget.
var divs=dojo.query("div[style*='font-stretch']", chart.node); for(var i=0; i<divs.length; i++){ chart.node.removeChild(divs[i]); }
comment:2 Changed 13 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:3 Changed 13 years ago by
Resolution: | fixed |
---|---|
Status: | closed → reopened |
please check into 1.0.2 branch or change milestone to 1.1
Note: See
TracTickets for help on using
tickets.
Replacement of chart test demonstrating stacking labels