Thanks - https://dev.agile42.com is great reference and covers most of my
problems so far.
One more tiny one - The sprint tickets chart -
agilo_sprint_ticket_stats_chart.html does notstart the y-axis at zero
which makes the graph very misleading in many cases. This is easily fixed by
changing line 34 to
yaxis: { minTickSize: 1, min:0 }:
In context, change:
var options_${unique_id} = {
bars: { show: true, autoScale: true, fill: 1, align: "center" },
xaxis: { ticks: labels_${unique_id} },
yaxis: { minTickSize: 1 }
}
To:
var options_${unique_id} = {
bars: { show: true, autoScale: true, fill: 1, align: "center" },
xaxis: { ticks: labels_${unique_id} },
yaxis: { minTickSize: 1, min:0 }
}
Cheers,
Andrew
This e-mail is confidential and may be privileged. It may be read, copied and
used only by the intended recipient. No communication sent by e-mail to or from
Eutechnyx is intended to give rise to contractual or other legal liability,
apart from liability which cannot be excluded under English law.
This email has been scanned for all known viruses by the Email Protection
Agency. http://www.epagency.net
www.eutechnyx.com Eutechnyx Limited. Registered in England No: 2172322
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Agilo for Scrum" group. This group is moderated by agile42 GmbH
http://www.agile42.com and is focused in supporting Agilo for Scrum users.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/agilo?hl=en
-~----------~----~----~----~------~----~------~--~---