Skip to content

Commit

Permalink
changes to the visual tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hamilton committed May 15, 2014
1 parent 8550a21 commit 1fc1d69
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ $(document).ready(function() {
width: torso.width,
height: torso.height,
right: torso.right,
linked: true,
baselines: fake_baselines,
target: '#fake_users1',
x_accessor: 'date',
Expand All @@ -60,7 +59,6 @@ $(document).ready(function() {
title:"More Fake Users",
description: "This line chart contains multiple lines. We're still working out the style details.",
data: data,
linked: true,
width: torso.width,
height: torso.height,
right: torso.right,
Expand Down Expand Up @@ -117,10 +115,11 @@ $(document).ready(function() {
d3.json('data/brief-1.json', function(data) {
data = convert_dates(data);
moz_chart({
title: "This Section, pt. 1",
description: "Another Graph.",
title: "Linked Charts",
description: "The two charts in this section are linked together. A rollover in one causes a rollover in the other. We are still working out how to make the exact same changes in each, but for now the rollovers merely trigger the rect.",
data: data,
width: trunk.width,
linked:true,
height: trunk.height,
right: trunk.right,
xax_count: 4,
Expand All @@ -147,9 +146,11 @@ $(document).ready(function() {
d3.json('data/brief-2.json', function(data) {
data = convert_dates(data);
moz_chart({
title: "Another Smaller One",
description: "Yet Another Graph.",
title: "area=false",
description: "Small check to see that area: false works how we'd expect it.",
data: data,
area: false,
linked:true,
width: trunk.width,
height: trunk.height,
right: trunk.right,
Expand Down

0 comments on commit 1fc1d69

Please sign in to comment.