summaryrefslogtreecommitdiff
path: root/priv/static/metrics-graphics-3.0-alpha3/examples/charts/other.htm
diff options
context:
space:
mode:
Diffstat (limited to 'priv/static/metrics-graphics-3.0-alpha3/examples/charts/other.htm')
-rw-r--r--priv/static/metrics-graphics-3.0-alpha3/examples/charts/other.htm48
1 files changed, 48 insertions, 0 deletions
diff --git a/priv/static/metrics-graphics-3.0-alpha3/examples/charts/other.htm b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/other.htm
new file mode 100644
index 0000000..e65d641
--- /dev/null
+++ b/priv/static/metrics-graphics-3.0-alpha3/examples/charts/other.htm
@@ -0,0 +1,48 @@
+ <div class='row trunk-section'>
+ <div class='col-lg-7 text-center' id='aspect1'></div>
+ <div class='col-lg-5'>
+ <div class='data-column'><a href='data/fake_users3.json'>data</a></div>
+
+<pre><code class='javascript'>d3.json('data/fake_users3.json', function(data) {
+ for(var i = 0; i < data.length; i++) {
+ data[i] = MG.convert.date(data[i], 'date');
+ }
+
+ MG.data_graphic({
+ title: "Preserving the aspect ratio",
+ description: "You can automatically set the width or height of a data graphic to fit its parent element. When done the graphic will rescale to fit the size of the parent element while preserving its aspect ratio.",
+ data: data,
+ full_width: true,
+ height: 300,
+ right: 40,
+ x_extended_ticks: true,
+ target: '#aspect1',
+ x_accessor: 'date',
+ y_accessor: 'value'
+ });
+});</code></pre>
+
+ </div>
+ </div>
+
+<script>
+MG._hooks = {};
+d3.json('data/fake_users3.json', function(data) {
+ for(var i = 0; i < data.length; i++) {
+ data[i] = MG.convert.date(data[i], 'date');
+ }
+
+ MG.data_graphic({
+ title: "Preserving the aspect ratio",
+ description: "You can automatically set the width or height of a data graphic to fit its parent element. When done the graphic will rescale to fit the size of the parent element while preserving its aspect ratio.",
+ data: data,
+ full_width: true,
+ height: 300,
+ right: 40,
+ x_extended_ticks: true,
+ target: '#aspect1',
+ x_accessor: 'date',
+ y_accessor: 'value'
+ });
+});
+</script>