two charts on demo page
authorDan Vanderkam <dan@dygraphs.com>
Mon, 4 Apr 2011 12:53:37 +0000 (08:53 -0400)
committerDan Vanderkam <dan@dygraphs.com>
Mon, 4 Apr 2011 12:53:37 +0000 (08:53 -0400)
docs/index.html
tests/styled-chart-labels.html

index 6021647..ca2c52f 100644 (file)
@@ -99,8 +99,6 @@
 
       <p style="font-size:0.8em">(Mouse over to highlight individual values. Click and drag to zoom. Double-click to zoom back out. Change the number and hit enter to adjust the averaging period.)</p>
 
-      <div id="title" style="width:800px; margin: 1em;text-align:center; font-weight: bold; font-size: 125%;">Temperatures in New York vs. San Francisco</div>
-
       <div id="demodiv" style="width:800px; height:320px;"></div>
       <script type="text/javascript">
         g = new Dygraph(
             rollPeriod: 14,
             showRoller: true,
             customBars: true,
-            title: 'Temperatures in New York vs. San Francisco',
-            ylabel: 'Temperature (F)'
+            title: 'Daily Temperatures in New York vs. San Francisco',
+            ylabel: 'Temperature (F)',
+            titleHeight: 24
           }
         );
       </script>
index f3d0785..c9f9e71 100644 (file)
     <script type="text/javascript" src="../dygraph.js"></script>
     <script type="text/javascript" src="data.js"></script>
     <style type="text/css">
-    .dygraph-label {
+    #div_g .dygraph-label {
       /* This applies to the title, x-axis label and y-axis label */
       font-family: Arial, Helvetica, sans-serif;
     }
-    .dygraph-title {
+    #div_g .dygraph-title {
       /* This rule only applies to the chart title */
       font-size: 24px;
       text-shadow: gray 2px 2px 2px;  /* color, delta-x, delta-y, blur radius */
     }
-    .dygraph-ylabel {
+    #div_g .dygraph-ylabel {
       /* This rule only applies to the y-axis label */
       font-size: 18px;
       text-shadow: gray -2px 2px 2px;  /* (offsets are in a rotated frame) */
     </style>
   </head>
   <body>
+    <p>In this chart, each chart label is styled independently. View source to
+    see how it works.</p>
+
     <div id="div_g" style="width:600px; height:300px;"></div>
 
-    <p>Each chart label is styled independently. View source to see how it
-    works.</p>
+    <p>This version of the chart uses the default styles:</p>
+    <div id="div_g2" style="width:600px; height:300px;"></div>
 
     <script type="text/javascript">
       g = new Dygraph(
               strokeWidth: 1.5
             }
           );
+
+      g2 = new Dygraph(
+            document.getElementById("div_g2"),
+            data, {
+              rollPeriod: 30,
+              legend: 'always',
+              title: 'High and Low Temperatures (30-day average)',
+              ylabel: 'Temperature (F)',
+              xlabel: 'Date (Pacific Time Zone)',
+              labelsDivStyles: {
+                'text-align': 'right',
+                'background': 'none'
+              },
+              strokeWidth: 1.5
+            }
+          );
     </script>
   </body>
 </html>