Opened 13 years ago
Closed 13 years ago
#6531 closed enhancement (fixed)
Legend
Reported by: | Eugene Lazutkin | Owned by: | Eugene Lazutkin |
---|---|---|---|
Priority: | high | Milestone: | 1.2 |
Component: | Charting | Version: | 1.1b1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
Submitted by Chris Mitchell (CLA on file).
Attachments (3)
Change History (8)
Changed 13 years ago by
Changed 13 years ago by
Attachment: | test_pie2d.html added |
---|
comment:1 Changed 13 years ago by
Status: | new → assigned |
---|
comment:2 Changed 13 years ago by
Changed 13 years ago by
Attachment: | Legend.2.js added |
---|
comment:3 Changed 13 years ago by
The serie doesn't have a name attribute. You can find the name of the serie in the runs hash of the chart.
I've modified the line 51 of Legend.js:
var label = s.name ? s.name : "Series"+i;
by:
var label = null; for (name in s[i].chart.runs){ if (s[i].chart.runs[name] == i){ label = name; break; } } label = label ? label : "Series"+i;
Kilroy
comment:4 Changed 13 years ago by
comment:5 Changed 13 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note: See
TracTickets for help on using
tickets.
#6199 is closed in favor of this ticket.