diff --git a/test/stackedAreaChartTest.html b/test/stackedAreaChartTest.html index 68af2ca..0fda895 100644 --- a/test/stackedAreaChartTest.html +++ b/test/stackedAreaChartTest.html @@ -17,7 +17,8 @@
Chart with two points
Chart with 'holes'
Total random points
-
No data
+
Less than four points, old tooltips
+
No data
@@ -234,6 +235,19 @@ function totalRandom() { return rval; } +function nPoints() { + var rval = [ + {key: "Series 1", + values: [ + [1,2], + [2,4], + [3,8] + ]} + ]; + return rval; + +} + //an example of harmonizing colors between visualizations //observe that Consumer Discretionary and Consumer Staples have //been flipped in the second chart @@ -299,5 +313,6 @@ defaultChartConfig("chart3", histcatexplong_singledatapoint); defaultChartConfig("chart4", histcatexplong_twodatapoint); defaultChartConfig("chart5", histcatexplong_withholes); defaultChartConfig("chart6", totalRandom(), false); -defaultChartConfig("chart7", []); +defaultChartConfig("chart7", nPoints(),false); +defaultChartConfig("chart8", []);