Opened 8 years ago
Closed 8 years ago
#15870 closed defect (invalid)
Lines/Default Chart is not showing title if margin was set, on IE 9.0
Reported by: | Bi11 | Owned by: | Eugene Lazutkin |
---|---|---|---|
Priority: | undecided | Milestone: | tbd |
Component: | Charting | Version: | 1.8.0 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description (last modified by )
if a Chart2D setup with margin set, add a Lines plot or default plot, then the Chart title disappered.
Only defect on IE9. Chrome FireFox Safari works fine.
var chart = new dojox.charting.Chart2D("chartNode", {title:'Hello', titlePos:'top', margins: {r: 30}}); chart.addPlot("default", {type: "Lines", markers: true});
The 'Hello' title won't show on IE 9.0
Change History (3)
comment:1 Changed 8 years ago by
Component: | Dojox → Charting |
---|---|
Owner: | changed from Adam Peller to Eugene Lazutkin |
comment:2 Changed 8 years ago by
Description: | modified (diff) |
---|
comment:3 Changed 8 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
You need to pass the full margins array. If you pass margins: { t:0, r: 30, l:0, b: 0} you will see it is working.