Skip to content

Commit

Permalink
remove redundant "tickets" from labels in legends. fixes #3.
Browse files Browse the repository at this point in the history
  • Loading branch information
neonstalwart authored and rjollos committed Dec 3, 2016
1 parent c0ca9c9 commit a31a311
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ticketgraph/htdocs/ticketgraph.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,27 @@ $(document).ready(function() {
[
{
data: closedTickets,
label: 'Closed tickets',
label: 'Closed',
bars: barSettings,
color: 1
},
{
data: openedTickets,
label: 'New tickets',
label: 'New',
bars: barSettings,
color: 2,
stack: true
},
{
data: reopenedTickets,
label: 'Reopened tickets',
label: 'Reopened',
bars: barSettings,
color: 3,
stack: true
},
{
data: openTickets,
label: 'Open tickets',
label: 'Open',
yaxis: 2,
lines: { show: true },
color: 0
Expand Down

0 comments on commit a31a311

Please sign in to comment.