Add variable declarations for most all graphs and charts.
[dygraphs.git] / experimental / palette / index.js
CommitLineData
20590000
RK
1// Copyright (c) 2012 Google, Inc.
2//
3// Permission is hereby granted, free of charge, to any person obtaining a copy
4// of this software and associated documentation files (the "Software"), to deal
5// in the Software without restriction, including without limitation the rights
6// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7// copies of the Software, and to permit persons to whom the Software is
8// furnished to do so, subject to the following conditions:
9//
10// The above copyright notice and this permission notice shall be included in
11// all copies or substantial portions of the Software.
12//
13// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19// THE SOFTWARE.
20
21/**
22 * @fileoverview Javascript to run index.html.
23 *
24 * @author konigsberg@google.com (Robert Konigsberg)
25 */
26
27"use strict";
28
36d4fabf
RK
29var Index = {};
30
31Index.splitVariables = function() { // http://www.idealog.us/2006/06/javascript_to_p.html
32 var query = window.location.search.substring(1);
33 var args = {};
34 var vars = query.split("&");
35 for (var i = 0;i < vars.length; i++) {
36 var pair = vars[i].split("=");
37 args[pair[0]] = pair[1];
20590000 38 }
36d4fabf 39 return args;
20590000
RK
40}
41
36d4fabf
RK
42Index.draw = function(element, data, options) {
43 element.innerHTML = "";
44 element.removeAttribute("style");
45 var g = new Dygraph(
46 element,
47 data,
48 options
49 );
50
51 // These don't work yet.
52 g.updateOptions({
53 labelsDiv: 'status',
54 });
55}
56
57Index.addMessage = function(text) {
20590000
RK
58 var messages = document.getElementById("messages");
59 messages.innerText = messages.innerText + text + "\n";
60}
61
36d4fabf
RK
62Index.start = function() {
63 var variables = Index.splitVariables();
3dcf1f1f
RK
64 var sampleName = variables["sample"];
65 if (!(sampleName)) {
66 sampleName = "interestingShapes";
36d4fabf 67 }
3dcf1f1f 68 var sample = Samples[sampleName];
36d4fabf 69 var data = sample.data;
20590000 70 var redraw = function() {
36d4fabf 71 Index.draw(document.getElementById("graph"), data, palette.read());
20590000
RK
72 }
73
74 var palette = new Palette();
75 palette.create(document, document.getElementById("optionsPalette"));
36d4fabf 76 palette.write(sample.options);
20590000
RK
77 palette.onchange = redraw;
78 palette.filterBar.focus();
79 redraw();
80
81 for (var opt in Dygraph.OPTIONS_REFERENCE) {
82 if (!(opt in opts)) {
83 var entry = Dygraph.OPTIONS_REFERENCE[opt];
84 console.warn("missing option: " + opt + " of type " + entry.type);
85 }
86 }
87}