fixed typo in lineWithFocus, removed cumulativeLineChartDaily, replaced with cumulativeLineChart that does daily and monthend

master-patched
Bob Monteverde 12 years ago
parent 803dfc6b38
commit b46d2d0deb

@ -39,7 +39,7 @@ text {
<script src="../src/models/axis.js"></script>
<script src="../src/models/line.js"></script>
<script src="../src/models/cumulativeLine.js"></script>
<script src="../src/charts/cumulativeLineChartDaily.js"></script>
<script src="../src/charts/cumulativeLineChart.js"></script>
<script>

@ -70,7 +70,7 @@ nv.models.lineWithFocus = function() {
var wrap = d3.select(this).selectAll('g.wrap').data([data]);
var gEnter = wrap.enter().append('g').attr('class', 'wrap .nvd3 .lineWithFocus').append('g');
var gEnter = wrap.enter().append('g').attr('class', 'wrap nvd3 lineWithFocus').append('g');
gEnter.append('g').attr('class', 'focus');
gEnter.append('g').attr('class', 'context');

Loading…
Cancel
Save