Skip to content

Instantly share code, notes, and snippets.

@zehome
Created July 16, 2013 18:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zehome/6011570 to your computer and use it in GitHub Desktop.
Save zehome/6011570 to your computer and use it in GitHub Desktop.
activate timeseries highcharts in graph-explorer
diff --git a/templates/snippet.graph-deps.tpl b/templates/snippet.graph-deps.tpl
index c484ba7..431b0a7 100644
--- a/templates/snippet.graph-deps.tpl
+++ b/templates/snippet.graph-deps.tpl
@@ -9,6 +9,8 @@
<script src="../timeserieswidget/flot/jquery.flot.selection.js"></script>
<script src="../timeserieswidget/flot/jquery.flot.time.js"></script>
<script src="../timeserieswidget/flot/jquery.flot.stack.js"></script>
+<script src="../timeserieswidget/highcharts/highcharts.js"></script>
+<script src="../timeserieswidget/highcharts/modules/exporting.js"></script>
<script src="../timeserieswidget/jquery.flot.axislabels.js"></script>
<script src="../timeserieswidget/timezone-js/src/date.js"></script>
<script src="../assets/js/graph-explorer.js"></script>
diff --git a/templates/snippet.graph.tpl b/templates/snippet.graph.tpl
index a47ab81..32d9531 100644
--- a/templates/snippet.graph.tpl
+++ b/templates/snippet.graph.tpl
@@ -45,8 +45,8 @@
% end
from: "-24hours",
until: "now",
- height: "300",
- width: "740",
+ height: "500",
+ width: "900",
line_stack_toggle: 'line_stack_form_flot_{{graph_id}}',
series: {stack: true, lines: { show: true, lineWidth: 0, fill: true }},
legend: { container: '#legend_flot_{{graph_id}}', noColumns: 1, labelFormatter: labelFormatter },
@@ -55,6 +55,6 @@
tz: "{{preferences.timezone}}",
};
var graph_flot_{{graph_id}} = $.extend({}, defaults, graph_data);
- $("#chart_flot_{{graph_id}}").graphiteFlot(graph_flot_{{graph_id}}, function(err) { console.log(err); });
+ $("#chart_flot_{{graph_id}}").graphiteHighcharts(graph_flot_{{graph_id}}, function(err) { console.log(err); });
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment