aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/questions/doc_feedback_chart.dryml')
-rw-r--r--app/views/questions/doc_feedback_chart.dryml16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/views/questions/doc_feedback_chart.dryml b/app/views/questions/doc_feedback_chart.dryml
new file mode 100644
index 0000000..1a02c45
--- /dev/null
+++ b/app/views/questions/doc_feedback_chart.dryml
@@ -0,0 +1,16 @@
+<page>
+ <head:>
+ <javascript name='raphael'/>
+ <javascript name='g.raphael-min'/>
+ <javascript name='g.pie-min'/>
+ </head:>
+ <body:>
+ <script type="text/javascript" charset="utf-8">
+ var r = Raphael(0, 0, 600, 600);
+ <%=
+ dat = this.feedback_chart_data
+ "r.g.piechart(300, 300, 200, [#{dat[:values]}], {legend: [#{dat[:labels]}], legendpos: \"north\"});"
+ %>
+ </script>
+ </body:>
+</page>