tweak defaults a bit
authorDan Vanderkam <dan@dygraphs.com>
Mon, 4 Apr 2011 23:47:24 +0000 (19:47 -0400)
committerDan Vanderkam <dan@dygraphs.com>
Mon, 4 Apr 2011 23:47:24 +0000 (19:47 -0400)
dygraph-canvas.js
dygraph.js
tests/styled-chart-labels.html

index b4004e0..522629c 100644 (file)
@@ -658,7 +658,7 @@ DygraphCanvasRenderer.prototype._renderChartLabels = function() {
     div.style.width = this.area.w + 'px';
     div.style.height = this.attr_('titleHeight') + 'px';
     div.style.textAlign = 'center';
-    div.style.fontSize = (this.attr_('titleHeight') - 2) + 'px';
+    div.style.fontSize = (this.attr_('titleHeight') - 8) + 'px';
     div.style.fontWeight = 'bold';
     var class_div = document.createElement("div");
     class_div.className = 'dygraph-label dygraph-title';
index faf77e4..88ad4b8 100644 (file)
@@ -194,7 +194,7 @@ Dygraph.DEFAULT_ATTRS = {
   avoidMinZero: false,
 
   // Sizes of the various chart labels.
-  titleHeight: 18,
+  titleHeight: 28,
   xLabelHeight: 18,
   yLabelWidth: 18,
 
index c9f9e71..b7af95e 100644 (file)
       font-size: 18px;
       text-shadow: gray -2px 2px 2px;  /* (offsets are in a rotated frame) */
     }
+    .chart {
+      border: 1px dashed black;
+      margin: 5px;
+      padding: 2px;
+    }
     </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>
+    <div class="chart" id="div_g" style="width:600px; height:300px;"></div>
 
     <p>This version of the chart uses the default styles:</p>
-    <div id="div_g2" style="width:600px; height:300px;"></div>
+    <div class="chart" id="div_g2" style="width:600px; height:300px;"></div>
 
     <script type="text/javascript">
       g = new Dygraph(
@@ -46,7 +51,7 @@
               title: 'High and Low Temperatures',
               titleHeight: 32,
               ylabel: 'Temperature (F)',
-              xlabel: 'Date (Pacific Time Zone)',
+              xlabel: 'Date (Ticks indicate the start of the indicated time period)',
               labelsDivStyles: {
                 'text-align': 'right',
                 'background': 'none'
@@ -62,7 +67,7 @@
               legend: 'always',
               title: 'High and Low Temperatures (30-day average)',
               ylabel: 'Temperature (F)',
-              xlabel: 'Date (Pacific Time Zone)',
+              xlabel: 'Date (Ticks indicate the start of the indicated time period)',
               labelsDivStyles: {
                 'text-align': 'right',
                 'background': 'none'