Home | History | Annotate | only in /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards
Up to higher level directory
NameDateSize
aggregate_results.html06-Dec-20132.5K
aggregate_results.js06-Dec-201310.1K
aggregate_results_unittest.js06-Dec-20137.8K
base.js06-Dec-20132.1K
base_unittests.js06-Dec-20131.7K
builders.js06-Dec-20137.4K
builders.jsonp06-Dec-2013124.9K
builders_jsonp_for_file_urls.js06-Dec-20131.8K
builders_unittest.jsonp06-Dec-20133.7K
builders_unittests.js06-Dec-20134.6K
dashboard_base.js06-Dec-20132.4K
dygraph-combined.js06-Dec-201355.4K
flakiness_dashboard.css06-Dec-20132K
flakiness_dashboard.html06-Dec-20132.1K
flakiness_dashboard.js06-Dec-201348K
flakiness_dashboard_embedded.html06-Dec-20133K
flakiness_dashboard_embedded_unittests.js06-Dec-20131.9K
flakiness_dashboard_tests.css06-Dec-20135.5K
flakiness_dashboard_unittests.js06-Dec-201318.2K
history.js06-Dec-201312.2K
history_unittests.js06-Dec-20133K
LICENSE.dygraph.txt06-Dec-20131K
loader.js06-Dec-20138.1K
loader_unittests.js06-Dec-20135.8K
overview.html06-Dec-20132.3K
overview.js06-Dec-20137.5K
overview_unittests.js06-Dec-20135.5K
README.dygraph.txt06-Dec-20131.6K
README.webtreemap.txt06-Dec-20132K
results.js06-Dec-20134.3K
results_unittests.js06-Dec-20133.1K
run-embedded-unittests.html06-Dec-20133.1K
run-unittests.html06-Dec-20133.1K
string.js06-Dec-20132.2K
timeline_explorer.html06-Dec-20133.2K
timeline_explorer.js06-Dec-201319.1K
treemap.html06-Dec-20133.4K
treemap.js06-Dec-20139K
ui.js06-Dec-20138.4K
ui_unittests.js06-Dec-20134K
webtreemap.css06-Dec-20132.6K
webtreemap.js06-Dec-20138K

README.dygraph.txt

      1 dygraphs JavaScript charting library
      2 Copyright (c) 2006-, Dan Vanderkam.
      3 
      4 Support: http://groups.google.com/group/dygraphs-users
      5 Source: http://github.com/danvk/dygraphs
      6 Issues: http://code.google.com/p/dygraphs/
      7 
      8 
      9 The dygraphs JavaScript library produces produces interactive, zoomable charts of time series.
     10 
     11 Features
     12 - Plots time series without using an external server or Flash
     13 - Supports multiple data series
     14 - Supports error bands around data series
     15 - Displays values on mouseover
     16 - Interactive zoom
     17 - Adjustable averaging period
     18 - Customizable click-through actions
     19 - Compatible with the Google Visualization API
     20 
     21 Demo
     22 For a gallery and documentation, see http://danvk.org/dygraphs/
     23 
     24 Minimal Example
     25 <html>
     26 <head>
     27 <script type="text/javascript" src="dygraph-combined.js"></script>
     28 </head>
     29 <body>
     30 <div id="graphdiv"></div>
     31 <script type="text/javascript">
     32   g = new Dygraph(
     33         document.getElementById("graphdiv"),  // containing div
     34         "Date,Temperature\n" +                // the data series
     35         "2008-05-07,75\n" +
     36         "2008-05-08,70\n" +
     37         "2008-05-09,80\n"
     38       );
     39 </script>
     40 </body>
     41 </html>
     42 
     43 License(s)
     44 dygraphs uses:
     45  - rgbcolor.js (Public Domain)
     46  - strftime.js (BSD License)
     47  - excanvas.js (Apache License)
     48  - YUI compressor (BSD License)
     49 
     50 rgbcolor: http://www.phpied.com/rgb-color-parser-in-javascript/
     51 strftime: http://tech.bluesmoon.info/2008/04/strftime-in-javascript.html
     52 excanvas: http://code.google.com/p/explorercanvas/
     53 yui compressor: http://developer.yahoo.com/yui/compressor/
     54 
     55 dygraphs is available under the MIT license, included in LICENSE.txt.
     56 

README.webtreemap.txt

      1 # webtreemap
      2 
      3 A simple treemap implementation using web technologies (DOM nodes, CSS
      4 styling and transitions) rather than a big canvas/svg/plugin.
      5 
      6 Play with a [demo][].
      7 
      8 [demo]: http://martine.github.com/webtreemap/demo/demo.html
      9 
     10 ## Creating your own
     11 
     12 1. Create a page with a DOM node (i.e. a `<div>`) that will contain
     13    your treemap.
     14 2. Add the treemap to the node via something like
     15 
     16         appendTreemap(document.getElementById('mynode'), mydata);
     17 3. Style the treemap using CSS.
     18 
     19 ### Input format
     20 
     21 The input data (`mydata` in the overview snippet) is a tree of nodes,
     22 likely imported via a separate JSON file.  Each node (including the
     23 root) should contain data in the following format.
     24 
     25     {
     26       name: (HTML that is displayed via .innerHTML on the caption),
     27       data: {
     28         "$area": (a number, in arbitrary units)
     29       },
     30       children: (list of child tree nodes)
     31     }
     32 
     33 (This strange format for data comes from the the [JavaScript InfoVis
     34 Toolkit][thejit].  I might change it in the future.)
     35 
     36 The `$area` of a node should be the sum of the `$area` of all of its
     37 `children`.
     38 
     39 (At runtime, tree nodes will dynamically will gain two extra
     40 attributes, `parent` and `dom`; this is only worth pointing out so
     41 that you don't accidentally conflict with them.)
     42 
     43 ### CSS styling
     44 
     45 The treemap is constructed with one `div` per region with a separate
     46 `div` for the caption.  Each div is styleable via the
     47 `webtreemap-node` CSS class.  The captions are stylable as
     48 `webtreemap-caption`.
     49 
     50 Each level of the tree also gets a per-level CSS class,
     51 `webtreemap-level0` through `webtreemap-level4`.  These can be
     52 adjusted to e.g. made different levels different colors.  To control
     53 the caption on a per-level basis, use a CSS selector like
     54 `.webtreemap-level2 > .webtreemap-caption`.
     55 
     56 Your best bet is to modify the included `webtreemap.css`, which
     57 contains comments about required and optional CSS attributes.
     58 
     59 ## Related projects
     60 
     61 * [JavaScript InfoVis Toolkit][thejit]
     62 
     63 [thejit]: http://thejit.org/