resolve issue 180 via better documentation
authorDan Vanderkam <danvk@google.com>
Thu, 16 Aug 2012 21:44:06 +0000 (17:44 -0400)
committerDan Vanderkam <danvk@google.com>
Thu, 16 Aug 2012 21:44:06 +0000 (17:44 -0400)
tests/customLabel.html

index d206f60..619cf5b 100644 (file)
     <script type="text/javascript" src="../dygraph-dev.js"></script>
 
     <script type="text/javascript" src="data.js"></script>
+    <style type="text/css">
+      /*
+      NOTE: dygraphs does set some properties on the built-in legend, e.g.
+      background-color and left. If you wish to override these, you can add
+      "!important" to your CSS styles, as below.
+
+      The full list of styles for which this is necessary are listed in
+      plugins/legend.js. They are:
+      o position
+      o font-size
+      o z-index
+      o width
+      o top
+      o left
+      o background
+      o line-height
+      o text-align
+      o overflow
+      */
+      #div_g14 .dygraph-legend {
+        width: 100px;
+        background-color: transparent !important;
+        left: 40px !important;
+      }
+    </style>
   </head>
   <body>
     <p>Labels are transparent and repositioned:</p>
             NoisyData, {
               rollPeriod: 14,
               errorBars: true,
-              labelsDivWidth: 100,
-              labelsDivStyles: {
-                'backgroundColor': 'transparent',
-              },
               labelsSeparateLines: true,
               yAxisLabelWidth: 20
             }