|
|
@ -25,7 +25,9 @@ Rickshaw.Graph.Renderer.BinaryBar = Rickshaw.Class.create(Rickshaw.Graph.Rendere
|
|
|
|
var barWidth = this.barWidth(series.active()[0]);
|
|
|
|
var barWidth = this.barWidth(series.active()[0]);
|
|
|
|
var barXOffset = 0;
|
|
|
|
var barXOffset = 0;
|
|
|
|
|
|
|
|
|
|
|
|
var activeSeriesCount = series.filter( function(s) { return !s.disabled; } ).length;
|
|
|
|
var activeSeriesCount = series.filter(function (s) {
|
|
|
|
|
|
|
|
return !s.disabled;
|
|
|
|
|
|
|
|
}).length;
|
|
|
|
var seriesBarWidth = this.unstack ? barWidth / activeSeriesCount : barWidth;
|
|
|
|
var seriesBarWidth = this.unstack ? barWidth / activeSeriesCount : barWidth;
|
|
|
|
|
|
|
|
|
|
|
|
var transform = function (d) {
|
|
|
|
var transform = function (d) {
|
|
|
@ -39,12 +41,20 @@ Rickshaw.Graph.Renderer.BinaryBar = Rickshaw.Class.create(Rickshaw.Graph.Rendere
|
|
|
|
if (series.disabled) return;
|
|
|
|
if (series.disabled) return;
|
|
|
|
|
|
|
|
|
|
|
|
var nodes = vis.selectAll("path")
|
|
|
|
var nodes = vis.selectAll("path")
|
|
|
|
.data(series.stack.filter( function(d) { return d.y !== null } ))
|
|
|
|
.data(series.stack.filter(function (d) {
|
|
|
|
|
|
|
|
return d.y !== null
|
|
|
|
|
|
|
|
}))
|
|
|
|
.enter().append("svg:rect")
|
|
|
|
.enter().append("svg:rect")
|
|
|
|
.attr("x", function(d) { return graph.x(d.x) + barXOffset })
|
|
|
|
.attr("x", function (d) {
|
|
|
|
.attr("y", function(d) { return ((graph.y(index + Math.abs(d.y))) * (d.y < 0 ? -1 : 1 )) })
|
|
|
|
return graph.x(d.x) + barXOffset
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.attr("y", function (d) {
|
|
|
|
|
|
|
|
return ((graph.y(index + Math.abs(d.y))) * (d.y < 0 ? -1 : 1 ))
|
|
|
|
|
|
|
|
})
|
|
|
|
.attr("width", seriesBarWidth)
|
|
|
|
.attr("width", seriesBarWidth)
|
|
|
|
.attr("height", function(d) { return graph.y.magnitude(Math.abs(d.y)) })
|
|
|
|
.attr("height", function (d) {
|
|
|
|
|
|
|
|
return graph.y.magnitude(Math.abs(d.y))
|
|
|
|
|
|
|
|
})
|
|
|
|
.attr("transform", transform);
|
|
|
|
.attr("transform", transform);
|
|
|
|
|
|
|
|
|
|
|
|
index++;
|
|
|
|
index++;
|
|
|
@ -280,7 +290,9 @@ function drawLineGraph(graphId, chartDataRaw){
|
|
|
|
var x_axis = "x_axis" + graphId;
|
|
|
|
var x_axis = "x_axis" + graphId;
|
|
|
|
var y_axis = "y_axis" + graphId;
|
|
|
|
var y_axis = "y_axis" + graphId;
|
|
|
|
$(chartWrapperElmId).html("").html('<div id = "' + y_axis
|
|
|
|
$(chartWrapperElmId).html("").html('<div id = "' + y_axis
|
|
|
|
+ '" class="custom_y_axis"></div><div id="' + chartDiv
|
|
|
|
+ '" class="custom_y_axis"></div><div class="legend_container" id="legend_container'
|
|
|
|
|
|
|
|
+ graphId + '"><div id="smoother' + graphId + '" title="Smoothing"></div><div class="legend" id="legend'
|
|
|
|
|
|
|
|
+ graphId + '"></div></div><div id="' + chartDiv
|
|
|
|
+ '" class="custom_rickshaw_graph"></div><div id="' + x_axis
|
|
|
|
+ '" class="custom_rickshaw_graph"></div><div id="' + x_axis
|
|
|
|
+ '" class="custom_x_axis"></div><div id="' + sliderDiv
|
|
|
|
+ '" class="custom_x_axis"></div><div id="' + sliderDiv
|
|
|
|
+ '" class="custom_slider"></div>');
|
|
|
|
+ '" class="custom_slider"></div>');
|
|
|
@ -289,7 +301,7 @@ function drawLineGraph(graphId, chartDataRaw){
|
|
|
|
element: document.getElementById(chartDiv),
|
|
|
|
element: document.getElementById(chartDiv),
|
|
|
|
width: graphWidth,
|
|
|
|
width: graphWidth,
|
|
|
|
height: 400,
|
|
|
|
height: 400,
|
|
|
|
strokeWidth: 1,
|
|
|
|
strokeWidth: 2,
|
|
|
|
renderer: 'line',
|
|
|
|
renderer: 'line',
|
|
|
|
unstack: true,
|
|
|
|
unstack: true,
|
|
|
|
stack: false,
|
|
|
|
stack: false,
|
|
|
@ -348,6 +360,12 @@ function drawLineGraph(graphId, chartDataRaw){
|
|
|
|
graph: graph,
|
|
|
|
graph: graph,
|
|
|
|
element: document.getElementById(sliderDiv)
|
|
|
|
element: document.getElementById(sliderDiv)
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var legend = new Rickshaw.Graph.Legend( {
|
|
|
|
|
|
|
|
graph: graph,
|
|
|
|
|
|
|
|
element: document.getElementById('legend' + graphId)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -364,7 +382,9 @@ function drawBarGraph(graphId, chartDataRaw){
|
|
|
|
var x_axis = "x_axis" + graphId;
|
|
|
|
var x_axis = "x_axis" + graphId;
|
|
|
|
var y_axis = "y_axis" + graphId;
|
|
|
|
var y_axis = "y_axis" + graphId;
|
|
|
|
$(chartWrapperElmId).html("").html('<div id = "' + y_axis
|
|
|
|
$(chartWrapperElmId).html("").html('<div id = "' + y_axis
|
|
|
|
+ '" class="custom_y_axis"></div><div id="' + chartDiv
|
|
|
|
+ '" class="custom_y_axis"></div><div class="legend_container" id="legend_container'
|
|
|
|
|
|
|
|
+ graphId + '"><div id="smoother' + graphId + '" title="Smoothing"></div><div class="legend" id="legend'
|
|
|
|
|
|
|
|
+ graphId + '"></div></div><div id="' + chartDiv
|
|
|
|
+ '" class="custom_rickshaw_graph"></div><div id="' + x_axis
|
|
|
|
+ '" class="custom_rickshaw_graph"></div><div id="' + x_axis
|
|
|
|
+ '" class="custom_x_axis"></div><div id="' + sliderDiv
|
|
|
|
+ '" class="custom_x_axis"></div><div id="' + sliderDiv
|
|
|
|
+ '" class="custom_slider"></div>');
|
|
|
|
+ '" class="custom_slider"></div>');
|
|
|
@ -372,7 +392,7 @@ function drawBarGraph(graphId, chartDataRaw){
|
|
|
|
var graphConfig = {
|
|
|
|
var graphConfig = {
|
|
|
|
element: document.getElementById(chartDiv),
|
|
|
|
element: document.getElementById(chartDiv),
|
|
|
|
width: graphWidth,
|
|
|
|
width: graphWidth,
|
|
|
|
height: 150,
|
|
|
|
height: 50 * chartDataRaw.length,
|
|
|
|
strokeWidth: 0.5,
|
|
|
|
strokeWidth: 0.5,
|
|
|
|
renderer: 'binary_bar',
|
|
|
|
renderer: 'binary_bar',
|
|
|
|
offset: 'zero',
|
|
|
|
offset: 'zero',
|
|
|
@ -420,7 +440,7 @@ function drawBarGraph(graphId, chartDataRaw){
|
|
|
|
orientation: 'left',
|
|
|
|
orientation: 'left',
|
|
|
|
element: document.getElementById(y_axis),
|
|
|
|
element: document.getElementById(y_axis),
|
|
|
|
width: 40,
|
|
|
|
width: 40,
|
|
|
|
height: 160,
|
|
|
|
height: 55 * chartDataRaw.length,
|
|
|
|
tickFormat: function (y) {
|
|
|
|
tickFormat: function (y) {
|
|
|
|
return '';
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -432,6 +452,12 @@ function drawBarGraph(graphId, chartDataRaw){
|
|
|
|
graph: graph,
|
|
|
|
graph: graph,
|
|
|
|
element: document.getElementById(sliderDiv)
|
|
|
|
element: document.getElementById(sliderDiv)
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var legend = new Rickshaw.Graph.Legend( {
|
|
|
|
|
|
|
|
graph: graph,
|
|
|
|
|
|
|
|
element: document.getElementById('legend' + graphId)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function scaleGraphs() {
|
|
|
|
function scaleGraphs() {
|
|
|
|