eFinancialPlanner  V1.0 (proof of concept)
Personal Financial Planning based on Maslowian Portfolio Theory
 All Classes Namespaces Files Functions Variables Typedefs Friends Macros Pages
test.js
Go to the documentation of this file.
1 $(document).ready(function(){
2  var l0 = [6, 11, 10, 13, 11, 7];
3  var l1 = [3, 6, 7, 7, 5, 3];
4  var l2 = [4, 8, 9, 10, 8, 6];
5  var l3 = [9, 13, 14, 16, 17, 19];
6  var l4 = [15, 17, 16, 18, 13, 11];
7  var plot1 = $.jqplot("chartOverview1", [l0, l1, l2, l3, l4], {seriesDefaults: {rendererOptions: { smooth: false }} } ); });
8 
9 $(document).ready(function(){
10  var l0 = [6, 11, 10, 13, 11, 7];
11  var l1 = [3, 6, 7, 7, 5, 3];
12  var l2 = [4, 8, 9, 10, 8, 6];
13  var l3 = [9, 13, 14, 16, 17, 19];
14  var l4 = [15, 17, 16, 18, 13, 11];
15 
16  var plot1 = $.jqplot("chart1", [l0, l1, l2, l3, l4], {
17  title: "Fill between 2 lines",
18  axesDefaults: {
19  pad: 1.05
20  },
22  // Use the fillBetween option to control fill between two
23  // lines on a plot.
25  fillBetween: {
26  // series1: Required, if missing won't fill.
27  series1: 1,
28  // series2: Required, if missing won't fill.
29  series2: 3,
30  // color: Optional, defaults to fillColor of series1.
31  color: "rgba(227, 167, 111, 0.7)",
32  // baseSeries: Optional. Put fill on a layer below this series
33  // index. Defaults to 0 (first series). If an index higher than 0 is
34  // used, fill will hide series below it.
35  baseSeries: 0,
36  // fill: Optional, defaults to true. False to turn off fill.
37  fill: true
38  },
39  seriesDefaults: {
40  rendererOptions: {
42  // Turn on line smoothing. By default, a constrained cubic spline
43  // interpolation algorithm is used which will not overshoot or
44  // undershoot any data points.
46  smooth: true
47  }
48  }
49  });
50 
51 
52 });
53 
54 
55 
56 
57 
58 
59 
document ready(function(){var l0=[6, 11, 10, 13, 11, 7];var l1=[3, 6, 7, 7, 5, 3];var l2=[4, 8, 9, 10, 8, 6];var l3=[9, 13, 14, 16, 17, 19];var l4=[15, 17, 16, 18, 13, 11];var plot1=$.jqplot("chartOverview1", [l0, l1, l2, l3, l4],{seriesDefaults:{rendererOptions:{smooth:false}}});})